Mail sending problems

iceuk626

Verified User
Joined
May 6, 2006
Messages
230
Location
United Kingdom
hi i seem to have problems sending emails from scripts like AWBS..

even when i run this it fails :

<?php
$to = "[email protected]";
$subject = "Hi!";
$body = "Hi,\n\nThis is a test..";
if (mail($to, $subject, $body))
{
echo("<p>Message sent!</p>");
}
else
{
echo("<p>Message delivery failed...</p>");
}
?>

Anyone have a suggestion how to fix this ?
 
Back
Top