Home >Backend Development >PHP Tutorial >Sending HTML emails using phpmailer_PHP tutorial

Sending HTML emails using phpmailer_PHP tutorial

WBOY
WBOYOriginal
2016-07-13 17:47:471133browse

用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 "发送成功";
}
?>


摘自 潇湘博客

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/478479.htmlTechArticle用phpmailer发送HTML邮件 ?php include_once(class.phpmailer.php);; $formmail=381266902@qq.com; $subject = 实验; $smtp=smtp.126.com; $username=XXXXXXXX@126.com; $password=*****...
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