Last active
December 6, 2021 10:38
-
-
Save damiencarbery/ab4a37f5892dec4a6bfc4c70adcb2d38 to your computer and use it in GitHub Desktop.
Sent WordPress emails with SMTP - Deliver emails reliably by using SMTP. Use a tiny streamlined plugin to keep things fast. https://www.damiencarbery.com/2019/01/send-wordpress-emails-with-smtp/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
Plugin Name: Send email via SMTP | |
Plugin URI: https://www.damiencarbery.com/2019/01/send-wordpress-emails-with-smtp/ | |
Description: Send emails via SMTP. | |
Author: Damien Carbery | |
Version: 0.1 | |
*/ | |
add_action( 'phpmailer_init', 'send_smtp_email' ); | |
function send_smtp_email( $phpmailer ) { | |
$phpmailer->isSMTP(); | |
$phpmailer->Host = 'smtp.yourhost.com'; | |
$phpmailer->SMTPAuth = true; | |
$phpmailer->Port = 587; | |
$phpmailer->Username = '[email protected]'; | |
$phpmailer->Password = 'ThisIsNotMyPassword'; | |
$phpmailer->SMTPSecure = 'tls'; | |
$phpmailer->From = '[email protected]'; | |
$phpmailer->FromName = 'My Name'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment