I am trying to send an email to my yahoo account through php hosted on a free site called www.zfreenet.com, im using the normal format
$add='myaddress@yahoo.com';
$sub='test';
$body='Testing";
if(!mail($add,$sub,$body))
echo "Failure..";
somehow, i end up getting failure always, even if i send it on other mail addresses like hotmail or gmail, what could be the problem ?