i have send one mail through php.In my browser is good to display. But in my gmail not good to display.i have attach my mail picture please help me.
function mail($to,$msgbody,$subject,$msgby,$content)
{
$from = 'dass@world360.in';
$headers = "MIME-Version: 1.0" . "\r\n";
$headers .= $content." charset=iso-8859-1" . "\r\n";
$headers .= "From: ".$from."\r\n";
$headers .= "Reply-To: ".$msgby."\r\n";
$returnPath = "-r".$from;
if(mail($to, $subject, $msgbody, $headers, $returnPath))
{
return 1;
}
else
{
return 0;
}
}