- Author: Scott Reilly
- Version: 3.1
- First released: 2009-06-15
- Last update: 2011-07-14
- Compatibility: WP 3.0 – 3.2.1
- Download: [ zip ]
- Description:
Configure SMTP mailing in WordPress, including support for sending e-mail via SSL/TLS (such as GMail).
-
Extended Description
Configure SMTP mailing in WordPress, including support for sending e-mail via SSL/TLS (such as GMail).
This plugin is the renamed, rewritten, and updated version of the wpPHPMailer plugin.
Use this plugin to customize the SMTP mailing system used by default by WordPress to handle outgoing e-mails. It offers you the ability to specify:
- SMTP host name
- SMTP port number
- If SMTPAuth (authentication) should be used.
- SMTP username
- SMTP password
- If the SMTP connection needs to occur over ssl or tls
In addition, you can instead indicate that you wish to use GMail to handle outgoing e-mail, in which case the above settings are automatically configured to values appropriate for GMail, though you’ll need to specify your GMail e-mail (including the “@gmail.com”) and password.
Regardless of whether SMTP is enabled, the plugin provides you the ability to define the name and e-mail of the ‘From:’ field for all outgoing e-mails.
A simple test button is also available that allows you to send a test e-mail to yourself to check if sending e-mail has been properly configured for your blog.
Links: Plugin Homepage | Author Homepage
Find out more at the plugin’s WordPress Plugin Repository page.
-
Screenshots
Click to see full-size image.
-
Installation
- Unzip
configure-smtp.zip
inside the/wp-content/plugins/
directory (or install via the built-in WordPress plugin installer) - Activate the plugin through the ‘Plugins’ admin menu in WordPress
- Click the plugin’s
Settings
link next to itsDeactivate
link (still on the Plugins page), or click on theSettings
->SMTP
link, to go to the plugin’s admin settings page. Optionally customize the settings (to configure it if the defaults aren’t valid for your situation). - (optional) Use the built-in test to see if your blog can properly send out e-mails.
- Unzip
-
Frequently Asked Questions
Q. Installation Instructions
A.- Unzip
configure-smtp.zip
inside the/wp-content/plugins/
directory (or install via the built-in WordPress plugin installer) - Activate the plugin through the ‘Plugins’ admin menu in WordPress
- Click the plugin’s
Settings
link next to itsDeactivate
link (still on the Plugins page), or click on theSettings
->SMTP
link, to go to the plugin’s admin settings page. Optionally customize the settings (to configure it if the defaults aren’t valid for your situation). - (optional) Use the built-in test to see if your blog can properly send out e-mails.
Q. I am already able to receive e-mail sent by my blog, so would I have any use or need for this plugin?
A. Most likely, no. Not unless you have a preference for having your mail sent out via a different SMTP server, such as GMail.Q. How do I find out my SMTP host, and/or if I need to use SMTPAuth and what my username and password for that are?
A. Check out the settings for your local e-mail program. More than likely that is configured to use an outgoing SMTP server. Otherwise, contact your host or someone more intimately knowledgeable about your situation.Q. I’ve sent out a few test e-mails using the test button after having tried different values for some of the settings; how do I know which one worked?
A. If your settings worked, you should receive the test e-mail at the e-mail address associated with your WordPress blog user account. That e-mail contains a time-stamp which was reported to you by the plugin when the e-mail was sent. If you are trying out various setting values, be sure to record what your settings were and what the time-stamp was when sending with those settings.Q. Why am I getting this error when attempting to send a test message: `SMTP Error: Could not connect to SMTP host.`?
A. There are a number of reasons you could be getting this error:Q. You have supplied incorrect server settings (hostname, port number, secure protocol type).
A.Q. What am I getting this error: `SMTP Error: Could not authenticate.`?
A. The connection to the SMTP server was successful, but the credentials you provided (username and/or password) are not correct. - Unzip
-
Release Log
3.1
- Add new debugging configuration option
- Fix bug that resulted from WP 3.2’s update to a new phpmailer
- Fix bug with checking ‘Use GMail?’ did not auto-reset settings accordingly (jQuery bug regarding .attr() vs .prop() introduced in jQ 1.6 in WP 3.2)
- Fix to call add_filter() instead of add_action() for ‘wp_mail_from’ (props Callum Macdonald)
- Fix to call add_filter() instead of add_action() for ‘wp_mail_from_name’
- Store error messages for later display rather than immediately outputting (too early)
- Save a static version of itself in class variable $instance
- Deprecate use of global variable $c2c_configure_smtp to store instance
- Add explicit empty() checks in a couple places
- Delete plugin settings on uninstallation
- Add __construct(), activation(), and uninstall()
- Add more FAQ questions
- Regenerate .pot
- Update plugin framework to version 023
- Note compatibility through WP 3.2+
- Drop compatibility with versions of WP older than 3.0
- Explicitly declare all functions as public and class variables as private
- Minor code formatting changes (spacing)
- Update copyright date (2011)
- Add plugin homepage and author links in description in readme.txt
3.0.1
- Update plugin framework to 017 to use password input field instead of text field for SMTP password
3.0
- Re-implementation by extending C2C_Plugin_016, which among other things adds support for:
- Reset of options to default values
- Better sanitization of input values
- Offload of core/basic functionality to generic plugin framework
- Additional hooks for various stages/places of plugin operation
- Easier localization support
- Add error checking and reporting when attempting to send test e-mail
- Don’t configure the mailer to use SMTP if no host is provided
- Fix localization support
- Store plugin instance in global variable, $c2c_configure_smtp, to allow for external manipulation
- Rename class from ‘ConfigureSMTP’ to ‘c2c_ConfigureSMTP’
- Remove docs from top of plugin file (all that and more are in readme.txt)
- Note compatibility with WP 3.0+
- Minor tweaks to code formatting (spacing)
- Add Upgrade Notice section to readme.txt
- Add PHPDoc documentation
- Add package info to top of file
- Update copyright date
- Remove trailing whitespace
- Update screenshot
- Update .pot file
2.7
- Fix to prevent HTML entities from appearing in the From name value in outgoing e-mails
- Added full support for localization
- Added .pot file
- Noted that overriding the From e-mail value may not take effect depending on mail server and settings, particular if SMTPAuth is used (i.e. GMail)
- Changed invocation of plugin’s install function to action hooked in constructor rather than in global space
- Update object’s option buffer after saving changed submitted by user
- Miscellaneous tweaks to update plugin to my current plugin conventions
- Noted compatibility with WP2.9+
- Dropped compatibility with versions of WP older than 2.8
- Updated readme.txt
- Updated copyright date
2.6
- Now show settings page JS in footer, and only on the admin settings page
- Removed hardcoded path to plugins dir
- Changed permission check
- Minor reformatting (added spaces)
- Tweaked readme.txt
- Removed compatibility with versions of WP older than 2.6
- Noted compatibility with WP 2.8+
2.5
- NEW
- Added support for GMail, including configuring the various settings to be appropriate for GMail
- Added support for SMTPSecure setting (acceptable values of ”, ‘ssl’, or ‘tls’)
- Added “Settings” link next to “Activate”/”Deactivate” link next to the plugin on the admin plugin listings page
- CHANGED
- Tweaked plugin’s admin options page to conform to newer WP 2.7 style
- Tweaked test e-mail subject and body
- Removed the use_smtp option since WP uses SMTP by default, the plugin can’t help you if it isn’t using SMTP already, and the plugin should just go ahead and apply if it is active
- Updated description, installation instructions, extended description, copyright
- Extended compatibility to WP 2.7+
- Facilitated translation of some text
- FIXED
- Fixed bug where specified wordwrap value wasn’t taken into account
2.0
- Initial release after rewrite from wpPHPMailer
pre-2.0
- Earlier versions of this plugin existed as my wpPHPMailer plugin, which due to the inclusion of PHPMailer within WordPress’s core and necessary changes to the plugin warranted a rebranding/renaming.
-
Copyright & Disclaimer
Copyright © 2009-2023 by Scott Reilly (aka coffee2code)This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -
Discussion / Support
Have any questions, comments, or suggestions? Please provide them via the plugin’s WordPress.org support forum. I’ll do my best to reply in a timely fashion and help as best I can.
Unfortunately, I cannot provide guaranteed support, nor do I provide support via any other means.
Was this plugin useful useful to you? Consider giving it a rating. If you’re inclined to give it a poor rating, please first post to the support forum to give me a chance to address or explain the situation.
Categories
25 replies on “Configure SMTP”
[…] 1ã€Configure SMTP 点击下载 […]
[…] and by doing so works around the issue (PHP mailer BTW). You can find it at the developers site coffee2code.com. Anyway a big thanks to Scott Reilly for a wonderful plugin and for fixed email! […]
[…] Configure SMTP von Scott Reilly ermöglicht das Aktivieren und konfigurieren von SMTP in WordPress. Bookmarks setzen: Diese Icons verlinken auf Bookmark Dienste bei denen Nutzer neue Inhalte finden und mit anderen teilen können. […]
[…] Configure SMTP […]
[…] function from PHP for sending mail. This causes problems everywhere from WordPress (which has a plugin to get around it) to custom […]
[…] couldn’t find because I guess I used the wrong search terms. It’s called “Configure SMTP” by Scott Reilly and allows you to use SMTP to send mail from your WordPress blog rather than […]
[…] е plugin Configure SMTP от […]
[…] 1. Download the Configure Smtp plugin and activate […]
[…] ????????????????smtp??????Configure SMTP? ShiftThis.net | Swift SMTP? XPertMailer?WP-Mail-SMTP????????????wordpress??smtp?????????????????????????????????????????smtp???????gmail?foxmail?163?126?QQmail??????????????????????? […]
[…] Configure SMTP If your web host doesn’t support PHP Sendmail or disables it for security reasons, and you have a secure SMTP setup, you will need this. It allows you to configure WordPress to use your secure SMTP server to send automatic WordPress emails to you or your readers. […]
[…] iPlode is constantly progressing. Now it is possible to save and load games. Only thing missing for the first release is the “New Game” dialogue. So I thought it is time to continue the work on the infrastructure. And to enable a nice discussion between the mass of iPlode users to come there is a Forum available now. Used PlugIns: WP-Forum Configure SMTP […]
[…] ????????????????smtp??????Configure SMTP? ShiftThis.net | Swift SMTP? XPertMailer?WP-Mail-SMTP????????????wordpress??smtp?????????????????????????????????????????smtp???????gmail?foxmail?163?126?QQmail??????????????????????? […]
[…] Configure SMTP […]
[…] Configure SMTP – use gmail to make your admin emails. Having trouble getting this to work for some reason. […]
[…] way of sending e-mail doesn’t work (like at our webhost, Webfaction) and you need to install Configure SMTP-plugin instead. Also, if you want to keep your experience similar to what you had at WP.com, be […]
[…] ?????? ?????? ???????? ??? ???????????? ??????? Configure SMTP. ????????, ???? ????????? ????? ????????? ????? […]
[…] ????wordpress???mail??????????SMTP???Configure SMTP? ???????????Gmail?????????Gmail?????????????????????????? AKPC_IDS += “1368,”;Share this on del.icio.usDigg this!Tweet This!Email this to a friend?Post this to MySpaceShare this on FacebookShare this on Reddit […]
[…] ??????Configure SMTP??????????????????????????? […]
[…] the same issue with my XAMPP setup on Windows. What I did was install the Configure SMTP plugin. coffee2code.com/wp-plugins/configure-smtp It lets you use any SMTP server (so your standard email account for example) while on your local […]
[…] ?????????????godaddy???????wordpress???mail()?????????????smtp?????????Configure SMTP? WP-Mail-SMTP???gmail???????? […]
[…] ????????????????smtp??????Configure SMTP? ShiftThis.net | Swift SMTP?XPertMailer?WP-Mail-SMTP? ???????????wordpress??smtp?????????????????????????????????????????smtp? ??????gmail?foxmail?163?126?QQmail??????????????????????? […]
[…] Better Delete Revision: ?????????????? Configure SMTP: ??????????????? Feed Style: ?????Feed?????? […]
[…] Configure SMTP (to allow me to use gmail to send the emails, which unlike any webhost I know will be sent from an IP address that will never get blacklisted by SPAM servers) […]
[…] Website url: coffee2code.com/wp-plugins/configure-smtp/ […]
[…] There are quite a few plugins out there to help you set up an external SMTP server, I've relied on Coffee2Code's Configure SMTP plugin myself a few times. There's some issues with that though, especially once you're starting to […]