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:
Woocommerce: Order Status Explanation
How to setup static IP in Debian
WordPress: How to remove meta generator tag?
How to set print area in Calc - OpenOffice
How to speed up Firefox - Vacuum
How to extract img tag attributes using PHP?
How to remove #more tag in WordPress
Virtue Theme: How to enable slider in shop page?
Share this with your friends:-