{"id":78025,"date":"2017-11-23T09:26:16","date_gmt":"2017-11-23T09:26:16","guid":{"rendered":"https:\/\/wordpress.org\/plugins\/socialveo-smtp\/"},"modified":"2017-11-23T09:43:45","modified_gmt":"2017-11-23T09:43:45","slug":"socialveo-smtp","status":"closed","type":"plugin","link":"https:\/\/sa.wordpress.org\/plugins\/socialveo-smtp\/","author":15797386,"comment_status":"closed","ping_status":"closed","template":"","meta":{"version":"1.0.0","stable_tag":"trunk","tested":"4.9.29","requires":"2.7","requires_php":"","requires_plugins":"","header_name":"Socialveo SMTP","header_author":"Socialveo Sagl","header_description":"Socialveo SMTP allows you to configure and send all outgoing emails via a SMTP server","assets_banners_color":"","last_updated":"2017-11-23 09:43:45","external_support_url":"","external_repository_url":"","donate_link":"","header_plugin_uri":"https:\/\/github.com\/socialveo\/socialveo-wp\/sveo-smtp\/","header_author_uri":"https:\/\/socialveo.com\/","rating":0,"author_block_rating":0,"active_installs":0,"downloads":915,"num_ratings":0,"support_threads":0,"support_threads_resolved":0,"author_block_count":0,"sections":["description","installation","faq","changelog"],"tags":[],"upgrade_notice":[],"ratings":{"1":0,"2":0,"3":0,"4":0,"5":0},"assets_icons":[],"assets_banners":[],"assets_blueprints":{},"all_blocks":[],"tagged_versions":[],"block_files":[],"assets_screenshots":[],"screenshots":[]},"plugin_section":[],"plugin_tags":[9965,6932,6696,149767,6695],"plugin_category":[41],"plugin_contributors":[149768],"plugin_business_model":[],"class_list":["post-78025","plugin","type-plugin","status-closed","hentry","plugin_tags-mailer","plugin_tags-phpmailer","plugin_tags-smtp","plugin_tags-socialveo","plugin_tags-wp_mail","plugin_category-communication","plugin_contributors-socialveo","plugin_committers-socialveo"],"banners":[],"icons":{"svg":false,"icon":"https:\/\/s.w.org\/plugins\/geopattern-icon\/socialveo-smtp.svg","icon_2x":false,"generated":true},"screenshots":[],"raw_content":"<!--section=description-->\n<p>Socialveo SMTP allows you to configure and send all outgoing emails via a SMTP server.<\/p>\n\n<p>You can set the following options:<\/p>\n\n<ul>\n<li>Set the from name and email address for outgoing email<\/li>\n<li>Set the reply to email address<\/li>\n<li>Set an SMTP host<\/li>\n<li>Set an SMTP port<\/li>\n<li>Set SSL \/ TLS encryption<\/li>\n<li>Set to use SMTP authentication<\/li>\n<li>Set an SMTP username and password<\/li>\n<\/ul>\n\n<p>Works with any email sending service that offers SMTP.<\/p>\n\n<h4>Why use SMTP?<\/h4>\n\n<p>This plugin will prevent your emails from going into the junk\/spam folder of the recipients.\nEmail sent by WordPress use PHP mail() function, and often the email go in the spam folder or get completely rejected by popular email providers.\nSMTP (Simple Mail Transfer Protocol) is the industry standard for sending emails. \nThis plugin helps you use proper authentication which increases email deliverability.<\/p>\n\n<h4>Why use this SMTP plugin?<\/h4>\n\n<p>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.<\/p>\n\n<h4>Credits<\/h4>\n\n<p>It is maintained by the team behind <a href=\"https:\/\/socialveo.com\/\" rel=\"friend\">Socialveo<\/a>.<\/p>\n\n<h4>What's Next<\/h4>\n\n<p>Add HTML email templates to all wordpress emails.<\/p>\n\n<!--section=installation-->\n<ol>\n<li>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>.<\/li>\n<li>Activate <\/li>\n<li>Open your wp-config.php and add below setting:<\/li>\n<\/ol>\n\n<p>define('SVEO_SMTP_ENABLE', true); \/\/ Enable\/disable SMTP\ndefine('SVEO_SMTP_FROM_MAIL', 'noreply@my-domain.com'); \/\/ Set From email\ndefine('SVEO_SMTP_FROM_NAME', 'My Sitename'); \/\/ Set From name\ndefine('SVEO_SMTP_REPLY_TO_MAIL', 'reply@my-domain.com'); \/\/ Optionally set different reply to\ndefine('SVEO_SMTP_REPLY_TO_NAME', 'My Sitename'); \/\/ Optionally set different reply to\ndefine('SVEO_SMTP_HOST', 'localhost'); \/\/ The SMTP mail host\ndefine('SVEO_SMTP_PORT', 25); \/\/ The SMTP server port number, defaults to 465 if encryption is ssl and 25 otherwise\ndefine('SVEO_SMTP_ENCRYPTION', ''); \/\/ 'ssl', 'tls' or ''\ndefine('SVEO_SMTP_AUTH', true); \/\/ Enable\/disable SMTP authentication\ndefine('SVEO_SMTP_USER', 'username'); \/\/ SMTP authentication username - used when SVEO_SMTP_AUTH is true\ndefine('SVEO_SMTP_PASS', 'password'); \/\/ SMTP authentication password - used when SVEO_SMTP_AUTH is true<\/p>\n\n<!--section=faq-->\n<dl>\n<dt>Installation Instructions<\/dt>\n<dd><ol>\n<li>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>.<\/li>\n<li>Activate <\/li>\n<li>Open your wp-config.php and add below setting:<\/li>\n<\/ol>\n\n<p>define('SVEO_SMTP_ENABLE', true); \/\/ Enable\/disable SMTP\ndefine('SVEO_SMTP_FROM_MAIL', 'noreply@my-domain.com'); \/\/ Set From email\ndefine('SVEO_SMTP_FROM_NAME', 'My Sitename'); \/\/ Set From name\ndefine('SVEO_SMTP_REPLY_TO_MAIL', 'reply@my-domain.com'); \/\/ Optionally set different reply to\ndefine('SVEO_SMTP_REPLY_TO_NAME', 'My Sitename'); \/\/ Optionally set different reply to\ndefine('SVEO_SMTP_HOST', 'localhost'); \/\/ The SMTP mail host\ndefine('SVEO_SMTP_PORT', 25); \/\/ The SMTP server port number, defaults to 465 if encryption is ssl and 25 otherwise\ndefine('SVEO_SMTP_ENCRYPTION', ''); \/\/ 'ssl', 'tls' or ''\ndefine('SVEO_SMTP_AUTH', true); \/\/ Enable\/disable SMTP authentication\ndefine('SVEO_SMTP_USER', 'username'); \/\/ SMTP authentication username - used when SVEO_SMTP_AUTH is true\ndefine('SVEO_SMTP_PASS', 'password'); \/\/ SMTP authentication password - used when SVEO_SMTP_AUTH is true<\/p><\/dd>\n<dt>My plugin still sends mail via the mail() function<\/dt>\n<dd><p>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.<\/p><\/dd>\n<dt>More questions?<\/dt>\n<dd><p>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><\/p><\/dd>\n\n<\/dl>\n\n<!--section=changelog-->\n<h4>[0.0.1] - 2017-11-20<\/h4>\n\n<ul>\n<li>First release<\/li>\n<\/ul>","raw_excerpt":"Socialveo SMTP allows you to configure and send all outgoing emails via a SMTP server.","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/sa.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin\/78025","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/sa.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin"}],"about":[{"href":"https:\/\/sa.wordpress.org\/plugins\/wp-json\/wp\/v2\/types\/plugin"}],"replies":[{"embeddable":true,"href":"https:\/\/sa.wordpress.org\/plugins\/wp-json\/wp\/v2\/comments?post=78025"}],"author":[{"embeddable":true,"href":"https:\/\/sa.wordpress.org\/plugins\/wp-json\/wporg\/v1\/users\/socialveo"}],"wp:attachment":[{"href":"https:\/\/sa.wordpress.org\/plugins\/wp-json\/wp\/v2\/media?parent=78025"}],"wp:term":[{"taxonomy":"plugin_section","embeddable":true,"href":"https:\/\/sa.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_section?post=78025"},{"taxonomy":"plugin_tags","embeddable":true,"href":"https:\/\/sa.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_tags?post=78025"},{"taxonomy":"plugin_category","embeddable":true,"href":"https:\/\/sa.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_category?post=78025"},{"taxonomy":"plugin_contributors","embeddable":true,"href":"https:\/\/sa.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_contributors?post=78025"},{"taxonomy":"plugin_business_model","embeddable":true,"href":"https:\/\/sa.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_business_model?post=78025"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}