{"id":161427,"date":"2022-08-18T13:24:22","date_gmt":"2022-08-18T13:24:22","guid":{"rendered":"https:\/\/wordpress.org\/plugins\/simple-smtp-mailer\/"},"modified":"2025-04-28T17:44:33","modified_gmt":"2025-04-28T17:44:33","slug":"simple-smtp-mailer","status":"publish","type":"plugin","link":"https:\/\/wordpress.org\/plugins\/simple-smtp-mailer\/","author":13765500,"comment_status":"closed","ping_status":"closed","template":"","meta":{"version":"1.1.0","stable_tag":"1.1.0","tested":"6.8.5","requires":"6.0","requires_php":"8.0","requires_plugins":null,"header_name":"Simple SMTP Mailer","header_author":"Josh Mckibbin","header_description":"Simplifies configuring a SMTP server to send email from your WordPress site","assets_banners_color":"a669bb","last_updated":"2025-04-28 17:44:33","external_support_url":"","external_repository_url":"","donate_link":"https:\/\/joshmckibbin.com\/donate","header_plugin_uri":"https:\/\/kibb.in\/ssmtp","header_author_uri":"https:\/\/joshmckibbin.com","rating":0,"author_block_rating":0,"active_installs":20,"downloads":1996,"num_ratings":0,"support_threads":0,"support_threads_resolved":0,"author_block_count":0,"sections":["description","faq","changelog"],"tags":{"1.0.2":{"tag":"1.0.2","author":"joshmckibbin","date":"2022-08-21 16:48:20"},"1.0.3":{"tag":"1.0.3","author":"joshmckibbin","date":"2022-12-07 14:41:09"},"1.0.4":{"tag":"1.0.4","author":"joshmckibbin","date":"2023-03-08 16:48:40"},"1.0.5":{"tag":"1.0.5","author":"joshmckibbin","date":"2024-10-30 02:21:42"},"1.1.0":{"tag":"1.1.0","author":"joshmckibbin","date":"2025-04-28 17:44:33"}},"upgrade_notice":{"":"<p>none<\/p>"},"ratings":[],"assets_icons":{"icon-128x128.png":{"filename":"icon-128x128.png","revision":2772146,"resolution":"128x128","location":"assets","locale":""},"icon-256x256.png":{"filename":"icon-256x256.png","revision":2772146,"resolution":"256x256","location":"assets","locale":""},"icon.svg":{"filename":"icon.svg","revision":2772146,"resolution":false,"location":"assets","locale":false}},"assets_banners":{"banner-1544x500.png":{"filename":"banner-1544x500.png","revision":2772146,"resolution":"1544x500","location":"assets","locale":""},"banner-772x250.png":{"filename":"banner-772x250.png","revision":2772146,"resolution":"772x250","location":"assets","locale":""}},"assets_blueprints":{},"all_blocks":[],"tagged_versions":["1.0.2","1.0.3","1.0.4","1.0.5","1.1.0"],"block_files":[],"assets_screenshots":{"screenshot-1.png":{"filename":"screenshot-1.png","revision":2876632,"resolution":"1","location":"assets","locale":""}},"screenshots":{"1":"Simple SMTP Mailer Settings"},"jetpack_post_was_ever_published":false},"plugin_section":[],"plugin_tags":[267,450,6932,6696,6695],"plugin_category":[41],"plugin_contributors":[213077],"plugin_business_model":[],"class_list":["post-161427","plugin","type-plugin","status-publish","hentry","plugin_tags-email","plugin_tags-mail","plugin_tags-phpmailer","plugin_tags-smtp","plugin_tags-wp_mail","plugin_category-communication","plugin_contributors-joshmckibbin","plugin_committers-joshmckibbin"],"banners":{"banner":"https:\/\/ps.w.org\/simple-smtp-mailer\/assets\/banner-772x250.png?rev=2772146","banner_2x":"https:\/\/ps.w.org\/simple-smtp-mailer\/assets\/banner-1544x500.png?rev=2772146","banner_rtl":false,"banner_2x_rtl":false},"icons":{"svg":"https:\/\/ps.w.org\/simple-smtp-mailer\/assets\/icon.svg?rev=2772146","icon":"https:\/\/ps.w.org\/simple-smtp-mailer\/assets\/icon.svg?rev=2772146","icon_2x":false,"generated":false},"screenshots":[{"src":"https:\/\/ps.w.org\/simple-smtp-mailer\/assets\/screenshot-1.png?rev=2876632","caption":"Simple SMTP Mailer Settings"}],"raw_content":"<!--section=description-->\n<p>The <a href=\"https:\/\/kibb.in\/ssmtp\">Simple SMTP Mailer<\/a> plugin allows you to easily configure WordPress to use SMTP instead of the PHP mail function.<\/p>\n\n<p><strong>This should only really be used in a development environment.<\/strong><\/p>\n\n<h3>Simple SMTP Mailer Settings<\/h3>\n\n<ul>\n<li><strong>Host<\/strong>: The mail server (Defaults to smtp.gmail.com)<\/li>\n<li><strong>Username<\/strong>: The username used for connecting to the SMTP server<\/li>\n<li><strong>Password<\/strong>: The password used for connecting to the SMTP server<\/li>\n<li><strong>Port<\/strong>: The port to use when sending an email (587, 465 or 25. Defaults to 587)<\/li>\n<li><strong>Security<\/strong>: The type of encryption security to use when sending an email (TLS or SSL. Defaults to TLS)<\/li>\n<li><strong>Debug<\/strong>: Enable debugging<\/li>\n<\/ul>\n\n<p>All settings can be overridden by assigning array values to the SSMTP_MAILER constant in wp-config.php. This is useful for automating local deployment.<\/p>\n\n<pre><code>define(\n    'SSMTP_MAILER',\n    array(\n        'host' =&gt; emailhost.com,\n        'username' =&gt; username,\n        'password' =&gt; password,\n        'port' =&gt; 25,\n        'security' =&gt; 'SSL'\n    )\n);\n<\/code><\/pre>\n\n<!--section=faq-->\n<dl>\n<dt id='can%20i%20send%20email%20via%20smtp%20using%20this%20plugin%3F'><h3>Can I send email via SMTP using this plugin?<\/h3><\/dt>\n<dd><p>Yes<\/p><\/dd>\n<dt id='does%20this%20plugin%20work%20with%20gmail%20smtp%3F'><h3>Does this plugin work with Gmail SMTP?<\/h3><\/dt>\n<dd><p>Yes<\/p><\/dd>\n\n<\/dl>\n\n<!--section=changelog-->\n<h4>1.1.0<\/h4>\n\n<ul>\n<li>Added the ability to manually override plugin options by defining the 'SSMTP_MAILER' constant<\/li>\n<li>Changed PHP requirement to 8.0<\/li>\n<li>The SMTP password is now saved as a salted hash<\/li>\n<li>Errors now get added to PHP error log when debug option is enabled<\/li>\n<li>Some minor code refactoring<\/li>\n<\/ul>\n\n<h4>1.0.5<\/h4>\n\n<ul>\n<li>Compatibility with WordPress 6.3<\/li>\n<\/ul>\n\n<h4>1.0.4<\/h4>\n\n<ul>\n<li>Added a debug function<\/li>\n<\/ul>\n\n<h4>1.0.3<\/h4>\n\n<ul>\n<li>Compatibility with WordPress 6.1.1<\/li>\n<\/ul>\n\n<h4>1.0.2<\/h4>\n\n<ul>\n<li>Replaced all PHP short Tags<\/li>\n<\/ul>\n\n<h4>1.0.1<\/h4>\n\n<ul>\n<li>text-domain fix<\/li>\n<li>Changed permissions from administrator to manage_options<\/li>\n<li>Added options page link on plugins page<\/li>\n<li>Updated the description<\/li>\n<\/ul>\n\n<h4>1.0.0<\/h4>\n\n<ul>\n<li>Initial commit<\/li>\n<\/ul>","raw_excerpt":"Simplifies local development by configuring WordPress to use SMTP instead of the PHP mail() function","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin\/161427","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin"}],"about":[{"href":"https:\/\/wordpress.org\/plugins\/wp-json\/wp\/v2\/types\/plugin"}],"replies":[{"embeddable":true,"href":"https:\/\/wordpress.org\/plugins\/wp-json\/wp\/v2\/comments?post=161427"}],"author":[{"embeddable":true,"href":"https:\/\/wordpress.org\/plugins\/wp-json\/wporg\/v1\/users\/joshmckibbin"}],"wp:attachment":[{"href":"https:\/\/wordpress.org\/plugins\/wp-json\/wp\/v2\/media?parent=161427"}],"wp:term":[{"taxonomy":"plugin_section","embeddable":true,"href":"https:\/\/wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_section?post=161427"},{"taxonomy":"plugin_tags","embeddable":true,"href":"https:\/\/wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_tags?post=161427"},{"taxonomy":"plugin_category","embeddable":true,"href":"https:\/\/wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_category?post=161427"},{"taxonomy":"plugin_contributors","embeddable":true,"href":"https:\/\/wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_contributors?post=161427"},{"taxonomy":"plugin_business_model","embeddable":true,"href":"https:\/\/wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_business_model?post=161427"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}