欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

用phpmailer发送HTML邮件

程序员文章站 2022-07-11 11:11:23
用phpmailer发送html邮件

用phpmailer发送html邮件

<?php
include_once("class.phpmailer.php");;
$formmail="";
$subject = "实验";  
$smtp="smtp.126.com";
$username="xxxxxxxx@126.com";
$password="**********";


$mail=new phpmailer();
$mail->smtpauth = true;
$mail->host=$smtp;
$mail->issmtp();
$mail->smtpauth=true;
$mail->username=$username;
$mail->password=$password;
$mail->from="";
$mail->fromname="souba激活";
$mail->sender="";
$mail->subject =$subject;
$mail->ishtml(true);
$mail->body ="<a href='www.2cto.com' target='_blank'>google</a>";

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


摘自 潇湘博客