Home  >  Article  >  Backend Development  >  phpmailer发HTML邮件超链接点击无效解决办法

phpmailer发HTML邮件超链接点击无效解决办法

WBOY
WBOYOriginal
2016-06-13 10:04:261097browse

phpmailer发HTML邮件超链接点击无效
用phpmailer发送HTML邮件,,

include_once("class.phpmailer.php");;
$formmail="[email protected]";
$subject = "实验";  
$smtp="smtp.126.com";
$username="[email protected]";
$password="**********";


$mail=new PHPMailer();
$mail->SMTPAuth = true;
$mail->Host=$smtp;
$mail->IsSMTP();
$mail->SMTPAuth=true;
$mail->Username=$username;
$mail->Password=$password;
$mail->From="[email protected]";
$mail->FromName="Souba激活";
$mail->Sender="[email protected]";
$mail->Subject =$subject;
$mail->IsHTML(true);
$mail->Body ="google";

$mail->AddAddress($formmail);
if(!$mail->Send())
{
echo "发送失败";
}
else
{
echo "发送成功";
}
?>


可以发送成功的,,

不过进邮箱打开邮件,,点击超链接无效,,、


求高手帮忙解决一下,,,谢谢

------解决方案--------------------
地址前加上HTTP://

Statement:
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