Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

phpmailer for wordpress

function phpmailer_example( $phpmailer ) {
    $phpmailer->isSMTP();     
    $phpmailer->Host = 'smtp.example.com';
    $phpmailer->SMTPAuth = true; // Ask it to use authenticate using the Username and Password properties
    $phpmailer->Port = 25;
    $phpmailer->Username = 'yourusername';
    $phpmailer->Password = 'yourpassword';

    // Additional settings…
    $phpmailer->SMTPSecure = 'tls'; // Choose 'ssl' for SMTPS on port 465, or 'tls' for SMTP+STARTTLS on port 25 or 587
    $phpmailer->From = "you@yourdomail.com";
    $phpmailer->FromName = "Your Name";
}
add_action( 'phpmailer_init', 'phpmailer_example' );
Source by mailtrap.io #
 
PREVIOUS NEXT
Tagged: #phpmailer #wordpress
ADD COMMENT
Topic
Name
9+8 =