Created
November 12, 2014 23:16
-
-
Save PunchRockgroin/29a1b6caef75eb7f4e66 to your computer and use it in GitHub Desktop.
Mail Test
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
<?php $to = '[email protected]'; $subject = 'Test email using PHP'; $message = 'This is a test email message'; $headers = 'From: [email protected]' . "\r\n" . 'Reply-To: [email protected]' . "\r\n" . 'X-Mailer: PHP/' . phpversion(); mail($to, $subject, $message, $headers, '[email protected]'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment