我们利用 phpmailer功能实现邮件发送功能哦,这里还利用了模板呢,就是读取指定文件内容再发送给朋友.
<?php
@session_start();
include (dirname(__FILE__) . './inc/function.php');
require (dirname(__FILE__) . "/mail/class.phpmailer.php");
$array = array_unique(Get_value('mail', 1));
$type = Get_value('type', 1);
$mail = new PHPMailer();
$count = 0;
$bad = 0;
$mail->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发送哦,
<?php
function GetContent($type) {
if ($type) {
if (file_exists('./mail_room.html')) {
$content = file_get_contents('./mail_room.html');
} else {
ShowMsg('file can\' read fail ');
}
} else {
if (file_exists('./mail_person.html')) {
$content = file_get_contents('./mail_person.html');
} else {
ShowMsg('person file read fail!');
}
}
return $content;
}
/* echo "<script>alert('发关".$count."邮件成功');</script>"; */
LANUX V1.0 蓝脑商务网站系统 适用于网店、公司宣传自己的品牌和产品。 系统在代码、页面方面设计简约,浏览和后台管理操作效率高。 此版本带可见即可得的html编辑器, 方便直观添加和编辑要发布的内容。 安装: 1.解压后,更换logo、分类名称、幻灯片的图片及名称和链接、联系我们等等页面。 2.将dbconfig.php里面的数据库配置更改为你的mysql数据库配置 3.将整个文件夹上传至
0
每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。
C++高性能并发应用_C++如何开发性能关键应用
Java AI集成Deep Java Library_Java怎么集成AI模型部署
Golang后端API开发_Golang如何高效开发后端和API
Python异步并发改进_Python异步编程有哪些新改进
C++系统编程内存管理_C++系统编程怎么与Rust竞争内存安全
Java GraalVM原生镜像构建_Java怎么用GraalVM构建高效原生镜像
Python FastAPI异步API开发_Python怎么用FastAPI构建异步API
C++现代C++20/23/26特性_现代C++有哪些新标准特性如modules和coroutines
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号