Skip to content

Instantly share code, notes, and snippets.

@QuestionDevelopment
Created August 23, 2013 20:05
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 QuestionDevelopment/6323441 to your computer and use it in GitHub Desktop.
Save QuestionDevelopment/6323441 to your computer and use it in GitHub Desktop.
$message_to = "jcampo@quasars.com";
$message_from = "info@byf.com";
$message_subject = "Tax Reminders Test";
$message_body = $test_email;
$headers = 'From: '.$message_from. "\r\n" .
'Reply-To: '. $message_from . "\r\n" .
'X-Mailer: PHP/' . phpversion();
mail($message_to, $message_subject, $message_body, $headers);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment