Skip to content

Instantly share code, notes, and snippets.

@nodech
Created November 5, 2015 06:08
Show Gist options
  • Save nodech/f00d5f5420aa38ad9d08 to your computer and use it in GitHub Desktop.
Save nodech/f00d5f5420aa38ad9d08 to your computer and use it in GitHub Desktop.
<?php
include 'wp-includes/class-phpmailer.php';
$mail = new PHPMailer();
$mail->setFrom('from@example.com', 'From Name');
$mail->addAddress('to@example.com', 'To Name');
$mail->Subject = 'Subject';
$mail->msgHTML( 'Hello ..., ...' );
$status = $mail->send();
echo ($status == true);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment