If you are doing WordPress plugin development that need to send out email, i think it’s a good idea to set the SMTP settings in your own plugin instead of using other third party SMTP plugin. It’s not that third party plugin is not good, but some times due to the plugin priority issue, the email might not sent out. This might because of the priority issue.
To send email using SMTP in your own WordPress plugin, follow the code below:-
Advertisements
- Open your theme functions.php file and follow the steps below
- Then you need to add this action ‘phpmailer_init’:-
add_action('phpmailer_init', 'techie_phpmailer_init_smtp');
- then create the function below to specify your smtp settings:-
function techie_phpmailer_init_smtp($phpmailer) { $phpmailer->Mailer = 'smtp'; $phpmailer->Sender = 'noreply@mysmtp.com'; $phpmailer->SMTPSecure = 'ssl'; $phpmailer->Host = 'mail.mysmtp.com'; $phpmailer->Port = 465; $phpmailer->SMTPAuth = TRUE; $phpmailer->Username = 'username@mysmtp.com'; $phpmailer->Password = 'mypassword'; $phpmailer = apply_filters('wp_mail_smtp_custom_options', $phpmailer); }
** Please change all the smtp settings to your smtp settings.
- Now all the email sent out from your plugin will go thru SMTP.
Of course, you can create your own interface to allow user to change their SMTP preference.
This is just a simple example to show you how to solve the SMTP email problem in WordPress.
Happy Coding!
Related posts:
How to auto compact Email folder for Thunderbird Email Client
How to flush DNS cache in Linux / Windows / Mac
How to setup multiple identities in Thunderbird?
Prestashop 1.6: How to show price in catalog mode?
Free image editor for Mac OS X / XP / Vista / Linux
Prestashop 1.6: "Unexpected token <" error when upload category thumbnail
Prestashop: How to disable ajax add to cart?
How to check if directory exists in Bash script
Share this with your friends:-