Created
January 9, 2016 00:44
-
-
Save calebgrove/e2a69d0b066e6f304980 to your computer and use it in GitHub Desktop.
PHP 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 | |
ini_set( 'display_errors', 1 ); | |
error_reporting( E_ALL ); | |
$from = "[email protected]"; | |
$to = "[email protected]"; | |
$subject = "PHP Mail Test script"; | |
$message = "This is a test to check the PHP Mail functionality"; | |
$headers = "From:" . $from; | |
mail($to,$subject,$message, $headers); | |
echo "Test email sent"; | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment