PHP邮件功能限制URL

时间:2018-08-20 21:02:33

标签: php email

我有一个正常工作的邮件功能,但是无论何时我在邮件中包含自己的URL都不会发送任何内容。我可以从网址中删除一个字母,这样就可以了。这是邮件:

///this works
$get="placeprint.xy";
/////this will not work
$get="placeprint.xyz";
$msg =$get;
// use wordwrap() if lines are longer than 70 characters
$msg = wordwrap($msg,500);
// send email
mail("me@gmail.com","MT4","$msg");

这不仅是一个Gmail问题,也是一个php问题,因为在手机号码上发生的事情与接收者相同。

0 个答案:

没有答案