如何在php邮件中使用可点击链接(href链接)

时间:2012-10-09 09:18:06

标签: php phpmailer

我想在电子邮件中使用点击链接,但它没有反映在通过php邮件功能发送的电子邮件中,下面是我的代码

$url = "<html><a href='www.google.com'>Link</a></html>";

$message = "Hi test url ".$url." ";

$$headers  = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
$headers .= "From: Admin <test@ex.com> \r\n";
@mail('test1@ex.com',$subject,$message,$headers);

我从电子邮件中收到的内容:

Hi test url <html><a href='www.google.com'>Link</a></html> ##NEW##

2 个答案:

答案 0 :(得分:2)

您似乎无法正确发送HTML邮件。通常我会建议使用第三方PHP库,如SwiftMailer,以简化过程。

编辑:如果您仍希望使用php的mail()函数,则必须正确指定标题。 This article可以提供帮助。

答案 1 :(得分:1)

在phpmailler中使用HTML:

$mail->isHTML(true) 

您查看了文档

phpMailler