Last active
August 29, 2015 14:08
-
-
Save rajohns08/0c7a5a41f6a4bf353fca to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$email = "[email protected]"; | |
// prepare headers for mail() function | |
$headers = 'From: [email protected]' . "\r\n" . | |
'Reply-To: [email protected]' . "\r\n" . | |
'X-Mailer: PHP/' . phpversion(); | |
// use the php mail() function to send | |
mail($email, "Subject Line", "message body", $headers); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment