Home >php教程 >php手册 >用phpmailer发送HTML邮件

用phpmailer发送HTML邮件

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-06-13 10:46:17821browse

用phpmailer发送HTML邮件

include_once("class.phpmailer.php");;
$formmail="381266902@qq.com";
$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="sou_ba@126.com";
$mail->FromName="Souba激活";
$mail->Sender="sou_ba@126.com";
$mail->Subject =$subject;
$mail->IsHTML(true);
$mail->Body ="google";

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


摘自 潇湘博客

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