所以我有一个SMTP服务器来发送电子邮件。我想在电子邮件中包含一些超链接。现在,我正在构建这样的超链接:
Bean
但是,当我从Outlook中收到它时。该链接未按预期显示,并且无法单击。当我执行检查元素时,我得到:
<body>
<ul>
<li><a href="https://google.com">https://google.com</a></li>
</ul>
</body>
有人可以建议我做错了什么吗?谢谢!
答案 0 :(得分:0)
您必须为邮件正文启用HTML。
答案 1 :(得分:0)
We will use the message parameter(a big string we pass to the mail function with the body of our email).
$message = '<html><body>';
$message .= '<h1>Hello, World!</h1>';
$message .= '</body></html>';
Now using PHP mail():-
mail($to, $subject, $message, $headers);
Just use this according to your needs.