为了账号安全,请及时绑定邮箱和手机立即绑定

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

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

PHP
繁花不似锦 2021-07-13 15:05:41
我试图用下一个正文从 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 okhttp://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 代码,而不是让谷歌这个词带有可点击到谷歌网站的链接,我该如何解决这个问题?谢谢
查看完整描述

2 回答

?
MM们

TA贡献1886条经验 获得超2个赞

您需要确保以 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";


查看完整回答
反对 回复 2021-07-16
  • 2 回答
  • 0 关注
  • 244 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信