Skip to content

Instantly share code, notes, and snippets.

@cmunns
Created August 5, 2016 19:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cmunns/f21389995a5547aad7e97ad8f005cf4b to your computer and use it in GitHub Desktop.
Save cmunns/f21389995a5547aad7e97ad8f005cf4b to your computer and use it in GitHub Desktop.
send mail wp_mail
$email = (isset($_POST['email']) ? $_POST['email'] : '';
$sendTo = 'windyd@naturvet.com';
$headers = 'From: '.$email.'' . "\r\n\\";
if( $email != '' ) {
wp_mail($sendTo,'NaturVet.com Newsletter Subscriber', 'Please add '.$email.' to the NaturVet email list.', $headers);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment