Hi guys,
I've created a nice script to send greeting cards.. it woks alright on my server, but it doesn't send mails on my friend's server(forum mass/private mail works on his server), so what could be the problem?
I've tested like this, says "your mail is sent", but haven't got any mail... could someone pls help me out?
TIA
<?php
$to = 'me@gmail.com';
$subject = 'mail is woking..!';
$contents = 'Hello world.. TEST MESSAGE...';
$from_header = "From: Me<me@yahoo.com>";
if(mail($to, $subject, $contents, $from_header)){
echo "your mail is sent!";
} else {
echo "Mail Failed";
}
?>