Created
August 10, 2017 15:39
-
-
Save deuterium7/b6e81e81e1f239d0c38d1f40f7bd2022 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
<?php | |
ini_set('display_errors', 1); | |
$to = '[email protected]'; | |
$subject = 'the subject'; | |
$message = 'hello'; | |
$headers = 'From: [email protected]'."\r\n". | |
'Reply-To: [email protected]'."\r\n". | |
'X-Mailer: PHP/'.phpversion(); | |
mail($to, $subject, $message, $headers); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment