0

当我在邮件正文中添加“a href 标签”时,邮件不会发送。

如果我删除这个“a href 和 www”标签,邮件发送和所有其他内容都会按照我的要求显示。

我不知道确切的问题出在哪里,我正在使用带有 PHP 5.3 版本的 GoDaddy 托管。

如果有人有更好的解决方案,请与我分享。

<?php
// multiple recipients

$to = 'ali.dzinemedia@gmail.com';

// subject
$subject = 'Birthday Reminders for August';

// message
$message = '<a href=www.google.com>Click here</a>';

// To send HTML `enter code here`mail, the Content-type header must be set
$headers  = 'MIME-Version: 1.0' . "\r\n";

// Additional headers
$headers .= 'To: Mary <ali.dzinemedia@gmail.com>' . "\r\n";
$headers .= 'From: Birthday Reminder <ali.dzinemedia@gmail.com>' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";

$headers .= 'X-Mailer: PHP/' . phpversion();

echo "To : ".$to;

// Mail it
mail($to, $subject, $message, $headers);
4

2 回答 2

0

使用它作为标题:

 $header  = "MIME-Version: 1.0\r\n";
 $header .= "Content-type: text/html; charset: utf8\r\n";

那就是如果你想在正文中使用 HTML,但你必须创建格式良好的 HTML,你知道它的所有标签:html、head、body,然后将它们全部关闭。

<html>
    <head></head>
    <body>Content here and <a href="#">this</a> is a link</body>
</html>
于 2013-09-13T07:32:05.883 回答
0

我曾经遇到过同样的问题,结果发现我的垃圾邮件过滤器在链接中有邮件时阻止了邮件,当我删除链接时让它进入了低谷。

我花了一些时间才注意到

于 2013-09-13T08:00:19.897 回答