I have tried to setup php to email and it has just not worked. We are using smtp through iis. I have used the below test script and it says that the mail was sent successfully, but I never receive an email. Please help.
<?php
$to = "test@domain.com";
$subject = "Hi!";
$body = "Hi, How are you?";
if (@mail($to, $subject, $message)) {
echo('<p>Mail sent successfully.</p>');
} else {
echo('<p>Mail could not be sent.</p>');
}
?>
Start Free Trial