Files
ms1inscription-v5/testmail.php
2026-05-13 09:43:32 -04:00

12 lines
321 B
PHP

<?php
ini_set( 'display_errors', 1 );
error_reporting( E_ALL );
$from = "info@ms1timing.com";
$to = "leithstephan@gmail.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";
?>