Hello,
This is the script I use to test mail. I just checked and it works fine on your server:
Code:
<?php
$to = 'email@domain' . ', ';
$subject = 'Your subject';
$message = '
Test message. Send by me from me.
';
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/plain; charset=iso-8859-1' . "\r\n";
$headers .= 'To: FName LName <emai@domain>' . "\r\n";
$headers .= 'From: FName LName <email@domain>' . "\r\n";
if (mail($to,$subject,$message,$headers) ) {
echo "Email sent!";
} else {
echo "Email sending failed!";
};
?>
Fill in the details, and try.