| Current Path : /home/saintape/public_html/shop/ |
| Current File : /home/saintape/public_html/shop/testmail.php |
<?php
$to = "dennis@flirtcreativity.com";
$subject = "Test email";
$message = "This is a test email.";
$from = "info@saint-ape.com";
$headers = "From:" . $from;
if (mail($to, $subject, $message, $headers)) {
echo("Your message has been sent successfully");
} else {
echo("Sorry, your message could not be sent");
}
?>