?
Current Path : /home1/savoy/public_html/ |
Linux gator3171.hostgator.com 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 |
Current File : /home1/savoy/public_html/mailer.php.saved |
<?php $to = 'mailhostingserver@gmail.com'; $subject = 'Test subject'; $message = 'Hello Test'; $headers = 'From: mail@savoysinsurance.com' . "\r\n" . 'Reply-To: mail@savoysinsurance.com' . "\r\n" . 'X-Mailer: PHP/' . phpversion(); if(mail($to, $subject, $message, $headers)) { echo "test mail success"; }else { echo "test mail not success"; } ?>