Heim  >  Artikel  >  Backend-Entwicklung  >  phpmailer发HTML邮件超链接点击无效解决办法

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

WBOY
WBOYOriginal
2016-06-13 10:04:261096Durchsuche

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

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn