iceuk626
05-06-2006, 01:59 AM
hi i seem to have problems sending emails from scripts like AWBS..
even when i run this it fails :
<?php
$to = "xxxx@xxxxx.com";
$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 ?
even when i run this it fails :
<?php
$to = "xxxx@xxxxx.com";
$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 ?