6. Add a default sending name and email address. Note: The default From Email Address and From Name can be changed programmatically. == Support == If you have questions or need assistance then feel free to contact the support team by logging into the App (https://app.smtp2go.com) then...
Step 6 Restart the Exim service using one of the following commands: /etc/init.d/exim restart (OR) service exim restart (OR) systemctl restart exim Step 7 Optional: If you wish to only have particular domain names send via SMTP2GO, you can use one of the options below. All other ema...
return empty($this->last_response->data->error_code); } /** * Log errors * * @return void */ protected function logError() { error_log('Error returned from SMTP2GO API...'); error_log(print_r($this->last_response, 1)); } public function getLastResponse() { return $this->la...
For Events, you’ll see the 6 events that we talked about in the section above. You can select more than one event to be triggered and send it to the same URL. The Users option limits the webhook data to specific SMTP2GO users. Headers is the last option. This field allows you to...
class-phpmailer.php is deprecated * handle php var not defined error = v1.0.7 = * hide API key in admin * don't pass empty BCC string to API call * text update * test on WordPress 5.5.1 = v1.0.6 = * set from address from parsed headers if present / if other plugins are injec...
* Used for determining mime types for files, code from PHPMailer * * @see PhpMailer * @since 1.0.0 * @package Smtp2go\WordpressPlugin * @package SMTP2GO\WordpressPlugin * */ class MimetypeHelper 6 changes: 3 additions & 3 deletions 6 Smtp2Go/Requestable.php Original file line number...
@@ -62,6 +62,36 @@ public function __construct($plugin_name, $version) $this->checkForConflictingPlugins(); }/** * Check for send limit * * @since 1.7.2 * @return void */ private function isFreePlan() { $apiKey = get_option('smtp2go_api_key'); ...
* provides wp_mail compatible functionality using sections of code from 0 smtp2go/index.php → app/index.php File renamed without changes. 20 changes: 19 additions & 1 deletion 20 build/vendor/autoload.php Original file line numberDiff line numberDiff line change @@ -2,6 +2,24 @@ ...
Search or jump to... Search code, repositories, users, issues, pull requests... Provide feedback We read every piece of feedback, and take your input very seriously. Include my email address so I can be contacted Cancel Submit feedback Saved searches Use saved searches to filter your...
package smtp import ( "io" "github.com/emersion/go-sasl" ) var ( ErrAuthFailed = &SMTPError{ Code: 535, EnhancedCode: EnhancedCode{5, 7, 8}, Message: "Authentication failed", } ErrAuthRequired = &SMTPError{ Code: 502, EnhancedCode: EnhancedCode{5, 7, 0}, Message: "Please authent...