Skip to content

Instantly share code, notes, and snippets.

@DrGirlfriend
Last active March 30, 2017 17:58
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 DrGirlfriend/80088c06b9254a873042505e32057583 to your computer and use it in GitHub Desktop.
Save DrGirlfriend/80088c06b9254a873042505e32057583 to your computer and use it in GitHub Desktop.
Test mail functionality
<?
$to = "dhendric@adobe.com, gchristou@betabreakers.com";
$subject = "Test mail";
$message = "Hello! This is a simple email message.";
$from = "s7miramar@adobe.com";
$headers = "From:" . $from;
mail($to,$subject,$message,$headers);
echo "Mail Sent.";
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment