Forked from damiencarbery/send-emails-via-smtp.php
Created
February 18, 2019 14:10
-
-
Save junias91/e5b61b26537084c1b137141e0ac77661 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