Hi Paul and welcome to the forums 
One thing you can do is run a conditional statement to see if the mail is actualy sent or not:
PHP Code:
<?php
$to='mymail@hotmail.com';
$email='myoutlookemail@iol.ie';
$mailHeader = "From: {$email}\r\n";
$mailHeader .= "Reply-To: {$email}\r\n";
$mailHeader .= "X-Mailer: PHP/" . phpversion();
$subject='the subject';
$message='hello';
if(!mail($to,$subject,$message,$mailHeader)) {
echo 'Error sending Mail';
} else {
echo 'Mail Sent';
}
?>
Are you sending from a server host or your own Localhost?
Spike
Bookmarks