猿问

如何在 PHP 中的此文本字符串中获取可点击的链接

我试图用下一个正文从 PHP 发送电子邮件:


$message .= 'This is a simple message';

$message .= "\n";

$message .= 'http://www.yahoo.com';

$message .= "\n";

$message .= "<a href='https://www.google.com'>Google</a>";

$message .= "\n";

结果我得到了下一个输出:


This is a simple message    //This line is ok

http://www.yahoo.com        //This line is ok

<a href='https://www.google.com'>Google</a> //It should appear the word Google clickable but it does not

我得到了 html 代码,而不是让谷歌这个词带有可点击到谷歌网站的链接,我该如何解决这个问题?谢谢


繁花不似锦
浏览 245回答 2
2回答

MM们

您需要确保以 HTML 格式发送邮件,而不是以文本/纯文本格式发送,这可能是您的情况,因此您将 HTML 作为源代码而不是它应有的样子。// Always set content-type when sending HTML email$headers = "MIME-Version: 1.0" . "\r\n";$headers .= "Content-type:text/html;charset=UTF-8" . "\r\n";
随时随地看视频慕课网APP
我要回答