Prio | Original string | Translation | — |
---|---|---|---|
↑ | Socialveo SMTP | You have to log in to add a translation. | Details |
Original untranslatedMeta |
|||
There are many WP plugins for SMTP, but this one aim to be simple by using lightweight code (single file less than 4KB), without storing anything on database, but doing configuration only via wp-config.php. Also there is not complete override of wp_mail() function like other plugins, but it's used only hook for add additional functionality; this allow easy upgrade to future version of WP. | You have to log in to add a translation. | Details | |
Original untranslated
There are many WP plugins for SMTP, but this one aim to be simple by using lightweight code (single file less than 4KB), without storing anything on database, but doing configuration only via wp-config.php. Also there is not complete override of wp_mail() function like other plugins, but it's used only hook for add additional functionality; this allow easy upgrade to future version of WP.
CommentFound in description paragraph. You have to log in to edit this translation. Meta |
|||
Why use this SMTP plugin? | You have to log in to add a translation. | Details | |
Original untranslated
Why use this SMTP plugin?
CommentFound in description header. You have to log in to edit this translation. Meta |
|||
You can get in touch with us via: <a href="https://github.com/socialveo/socialveo-wp/issues" rel="friend">github.com/socialveo/socialveo-wp/issues</a> | You have to log in to add a translation. | Details | |
Original untranslated
You can get in touch with us via: <a href="https://github.com/socialveo/socialveo-wp/issues" rel="friend">github.com/socialveo/socialveo-wp/issues</a>
CommentFound in faq paragraph. You have to log in to edit this translation. Meta |
|||
If other plugins you're using are not coded to use the wp_mail() function but instead call PHP's mail() function directly, they will bypass the settings of this plugin. | You have to log in to add a translation. | Details | |
Original untranslated
If other plugins you're using are not coded to use the wp_mail() function but instead call PHP's mail() function directly, they will bypass the settings of this plugin.
CommentFound in faq paragraph. You have to log in to edit this translation. Meta |
|||
More questions? | You have to log in to add a translation. | Details | |
Original untranslatedMeta |
|||
My plugin still sends mail via the mail() function | You have to log in to add a translation. | Details | |
Original untranslated
My plugin still sends mail via the mail() function
CommentFound in faq header. You have to log in to edit this translation. Meta |
|||
Installation Instructions | You have to log in to add a translation. | Details | |
Original untranslatedMeta |
|||
define('SVEO_SMTP_ENABLE', true); // Enable/disable SMTP define('SVEO_SMTP_FROM_MAIL', 'noreply@my-domain.com'); // Set From email define('SVEO_SMTP_FROM_NAME', 'My Sitename'); // Set From name define('SVEO_SMTP_REPLY_TO_MAIL', 'reply@my-domain.com'); // Optionally set different reply to define('SVEO_SMTP_REPLY_TO_NAME', 'My Sitename'); // Optionally set different reply to define('SVEO_SMTP_HOST', 'localhost'); // The SMTP mail host define('SVEO_SMTP_PORT', 25); // The SMTP server port number, defaults to 465 if encryption is ssl and 25 otherwise define('SVEO_SMTP_ENCRYPTION', ''); // 'ssl', 'tls' or '' define('SVEO_SMTP_AUTH', true); // Enable/disable SMTP authentication define('SVEO_SMTP_USER', 'username'); // SMTP authentication username - used when SVEO_SMTP_AUTH is true define('SVEO_SMTP_PASS', 'password'); // SMTP authentication password - used when SVEO_SMTP_AUTH is true | You have to log in to add a translation. | Details | |
Original untranslated
define('SVEO_SMTP_ENABLE', true); // Enable/disable SMTP↵
define('SVEO_SMTP_FROM_MAIL', 'noreply@my-domain.com'); // Set From email↵
define('SVEO_SMTP_FROM_NAME', 'My Sitename'); // Set From name↵
define('SVEO_SMTP_REPLY_TO_MAIL', 'reply@my-domain.com'); // Optionally set different reply to↵
define('SVEO_SMTP_REPLY_TO_NAME', 'My Sitename'); // Optionally set different reply to↵
define('SVEO_SMTP_HOST', 'localhost'); // The SMTP mail host↵
define('SVEO_SMTP_PORT', 25); // The SMTP server port number, defaults to 465 if encryption is ssl and 25 otherwise↵
define('SVEO_SMTP_ENCRYPTION', ''); // 'ssl', 'tls' or ''↵
define('SVEO_SMTP_AUTH', true); // Enable/disable SMTP authentication↵
define('SVEO_SMTP_USER', 'username'); // SMTP authentication username - used when SVEO_SMTP_AUTH is true↵
define('SVEO_SMTP_PASS', 'password'); // SMTP authentication password - used when SVEO_SMTP_AUTH is true
CommentFound in installation paragraph, faq paragraph. You have to log in to edit this translation. Meta |
|||
Open your wp-config.php and add below setting: | You have to log in to add a translation. | Details | |
Original untranslated
Open your wp-config.php and add below setting:
CommentFound in installation list item, faq list item. You have to log in to edit this translation. Meta |
|||
Activate | You have to log in to add a translation. | Details | |
Original untranslated
Activate
CommentFound in installation list item, faq list item. You have to log in to edit this translation. Meta |
|||
Install plugin, see instructions on <a href="http://www.wpbeginner.com/beginners-guide/step-by-step-guide-to-install-a-wordpress-plugin-for-beginners/" rel="friend">how to install a WordPress plugin</a>. | You have to log in to add a translation. | Details | |
Original untranslated
Install plugin, see instructions on <a href="http://www.wpbeginner.com/beginners-guide/step-by-step-guide-to-install-a-wordpress-plugin-for-beginners/" rel="friend">how to install a WordPress plugin</a>.
CommentFound in installation list item, faq list item. You have to log in to edit this translation. Meta |
|||
Add HTML email templates to all wordpress emails. | You have to log in to add a translation. | Details | |
Original untranslated
Add HTML email templates to all wordpress emails.
CommentFound in description paragraph. You have to log in to edit this translation. Meta |
|||
It is maintained by the team behind <a href="https://socialveo.com/" rel="friend">Socialveo</a>. | You have to log in to add a translation. | Details | |
Original untranslated
It is maintained by the team behind <a href="https://socialveo.com/" rel="friend">Socialveo</a>.
CommentFound in description paragraph. You have to log in to edit this translation. Meta |
|||
This plugin will prevent your emails from going into the junk/spam folder of the recipients. Email sent by WordPress use PHP mail() function, and often the email go in the spam folder or get completely rejected by popular email providers. SMTP (Simple Mail Transfer Protocol) is the industry standard for sending emails. This plugin helps you use proper authentication which increases email deliverability. | You have to log in to add a translation. | Details | |
Original untranslated
This plugin will prevent your emails from going into the junk/spam folder of the recipients.↵
Email sent by WordPress use PHP mail() function, and often the email go in the spam folder or get completely rejected by popular email providers.↵
SMTP (Simple Mail Transfer Protocol) is the industry standard for sending emails. ↵
This plugin helps you use proper authentication which increases email deliverability.
CommentFound in description paragraph. You have to log in to edit this translation. Meta |
Export as
Comment
Plugin name.