Home > Backend Development > PHP Tutorial > php发送邮件有关问题

php发送邮件有关问题

WBOY
Release: 2016-06-13 10:15:05
Original
906 people have browsed it

php发送邮件问题
$body='注册成功!'.''.$url.'
'.'请点击该地址。激活您的用户!';
$a1=trim($_GET['name']);


上面是我发送到邮箱中的内容,都能正常显示,标签中的内容也是显示的蓝色,但是不能点击它

请问是我上面的代码写错了吗

------解决方案--------------------
包含变量的串要用双引号
------解决方案--------------------
$body='注册成功!'.'
'.$url.'
'.'请点击该地址。激活您的用户!';
这样或者改用双引号。
------解决方案--------------------
修改成下面这样就可以了:
$url = 'http://www.xxx.com/1111111';
$body='注册成功!'.''.$url.'
'.'请点击该地址。激活您的用户!';

或者,有的邮箱设置了只支持文本邮件,那么超链接就无效了,只有复制
------解决方案--------------------
高个静态的试试
csdn
.

如果可以要么是url的问题。要么是对body做了特殊处理。看看源代码可能有帮助
------解决方案--------------------
应该是 "'.$url.'"

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template