电子邮件内容具有我自己的域名时,电子邮件不起作用

时间:2014-11-21 09:35:16

标签: php email

当我使用自己的域名作为此类电子邮件内容时,我使用简单的PHP脚本发送邮件

$message="Please visit us at https://myhouseinthecloud.com/";
mail($email,$subject,$message,"From: $from\n");

然后我的电子邮件停止工作,如果我删除此链接,则为

 $message="Please visit us";
 mail($email,$subject,$message,"From: $from\n");

然后它的工作原理。我没有得到什么问题。我只对此域名有疑问。

1 个答案:

答案 0 :(得分:0)

请尝试使用<a href='https://myhouseinthecloud.com/'>Click Here</a>之类的锚标记 了解更多信息: http://www.webhostingtalk.com/showthread.php?t=416467