Forked from damiencarbery/send-emails-via-smtp.php
Created
February 22, 2020 05:20
-
-
Save KoolPal/0dabd434b19663045f6f39cd58349dc7 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 hidden or 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