doushi9729 2010-09-09 02:06 采纳率: 0%
浏览 43
已采纳

HTML链接向Gmail发送电子邮件时出错

Hello i have developed a newsletter script to send HTML emails.

Everything works great receiving to desktop email clients, but i notice when i send to a gmail account, the html links are not working while embedded images, css, table layout work great. Gmail change

<a href="myurl" title="My url">link</a>

to

<a title="My url">link</a>

i found a few topics around, without solutions.

this is how i build the email, in the $body var are the standard html links:

function send_mail ($from,$to,$subject,$body,$site_skin,$site_name,$site_url) { //general header $header = "From: $site_name "; $header .="BCC: $to "; $header .= "X-Mailer: PHP5.3 ";

//separator string
$boundary = "==String_Boundary_x" .md5(time()). "x";

// specific message header
$header .= "MIME-Version: 1.0
";
$header .= "Content-Type: multipart/related;
";
$header .= " boundary=\"$boundary\";

";

//this part is viewed only if the program cannot manage the MIME
$message = "your software dosen't support MIME

";
$message .= "--$boundary
";
$message .= "Content-Type: text/html; charset=\"utf-8\"
";
$message .= "Content-Transfer-Encoding: 7bit

";

$title_newsletter ="$subject";
$mail_body = $body; 
$subject = "$titoloNSL";
$mail_site_url="$site_url";

include ("../../../../themes/skins/$site_skin/email/email.php");
$message .= "$htmlBody";

$message .= "--$boundary
";
$message .= "Content-ID: <header>
";
$message .= "Content-Type: image/jpeg
";
$message .= "Content-Transfer-Encoding: base64

";

$embedded_file = "../../../../themes/skins/$site_skin/images/mail_header.jpg";
$file = fopen($embedded_file,'rb');
$data = fread($file,filesize($embedded_file));
fclose($file);

$data = chunk_split(base64_encode($data));
$message .= "$data

";

$message .= "--$boundary
";
$message .= "Content-ID: <go>
";
$message .= "Content-Type: image/gif
";
$message .= "Content-Transfer-Encoding: base64

";

$embedded_file = "../../../../themes/skins/$site_skin/images/go.gif";
$file = fopen($embedded_file,'rb');
$data = fread($file,filesize($embedded_file));
fclose($file);

$data = chunk_split(base64_encode($data));
$message .= "$data

";

$message .= "--$boundary--
";

@mail($to, $subject, $message, $header); 

}

展开全部

  • 写回答

1条回答 默认 最新

  • dongmaoluan5719 2010-09-09 03:38
    关注

    My guess is that there's nothing wrong with your code; it looks like it's Gmail that's stripping the links out of your HTML at their end.

    Possibly your URLs are falling foul of their spam filters, or something like that?

    If that's case, I don't know that there's anything you can do in your PHP code to improve things (short of sending the email as plain text instead of html).

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部