Skip to content

Instantly share code, notes, and snippets.

@calebgrove
Created January 9, 2016 00:44
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 calebgrove/e2a69d0b066e6f304980 to your computer and use it in GitHub Desktop.
Save calebgrove/e2a69d0b066e6f304980 to your computer and use it in GitHub Desktop.
PHP Mail() Test
<?php
ini_set( 'display_errors', 1 );
error_reporting( E_ALL );
$from = "from@example.com";
$to = "to@example.com";
$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