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

WBOY
Freigeben: 2016-06-13 10:04:26
Original
1133 Leute haben es durchsucht

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

Verwandte Etiketten:
Quelle:php.cn
Erklärung dieser Website
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
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage
Über uns Haftungsausschluss Sitemap
Chinesische PHP-Website:Online-PHP-Schulung für das Gemeinwohl,Helfen Sie PHP-Lernenden, sich schnell weiterzuentwickeln!