PHP头条
热点:

利用phpmailer发送邮件代码[发送html内容]


我们利用 phpmailer功能实现邮件发送功能哦,这里还利用了模板呢,就是读取指定文件内容再发送给朋友.

IsSMTP(); // set mailer to use SMTP
$mail->Host = "smtp.163.com"; // smtp1.example.com;smtp2.example.comspecify main and backup server
$mail->SMTPAuth = true; // turn on SMTP authentication
$mail->Username = "mailangel123"; // SMTP username
$mail->Password = "******"; // SMTP password
$mail->From = "mailangel123@163.com";
$mail->FromName = "你的好友来信";
$MailBody = GetContent($type);
//$array =explode('|',$rs['mail']);
foreach ($array as $tmpmail) {
    if (@preg_match("/w+([-+.]w+)*@w+([-.]w+)*.w+([-.]w+)*/", $tmpmail) || strlen($User_Mail) < 6) {
        $mail->AddReplyTo("mailangel123@163.com", "44");
        $mail->AddAddress($tmpmail, '您好!');
        $mail->WordWrap = 50;
        $mail->CharSet = "GB2312";
        //$mail->AddAttachment("/var/tmp/file.tar.gz");
        //$mail->AddAttachment("/tmp/image.jpg", "new.jpg");
        $mail->IsHTML(true);
        $mail->Subject = "你的朋友邀请你一起合影!";
        $mail->Body = $MailBody;
        if (!$mail->Send()) {
            $bad++;
            $mail->ClearAddresses();
            $mail->ClearAttachments();
        } else {
            $count++;
        }
    }
    ShowMsg("result:$count");
}
?>

下面这个文章是读取html 文档并进行html发送哦,

www.phpzy.comtrue/phpyy/46849.htmlTechArticle利用phpmailer发送邮件代码[发送html内容] 我们利用 phpmailer功能实现邮件发送功能哦,这里还利用了模板呢,就是读取指定文件内容再发送给朋友. IsSMTP(); // set mailer to use SMTP$mail->Host = "smtp...

相关文章

PHP之友评论

今天推荐