<?php
// 請求 PHPmailer類 檔案
require_once("class.phpmailer.php");
//發送Email函數
function smtp_mail ( $sendto_email, $subject, $body, $extra_hdrs, $user_name) {
$mail = new PHPMailer();
$mail->IsSMTP(); // send via SMTP
$mail->Host = "smtp.163.com"; // SMTP servers
$mail->SMTPAuth = true; // turn on SMTP authentication
$mail->Username = "cfc4n"; // SMTP username 注意:普通郵件認證不需要加 @網域名稱
$mail->Password = "123456"; // SMTP password
$mail->From = "cfc4n@163.com"; // 寄件者郵箱
$mail->FromName = "中國資金管理網"; // 寄件者 ,比如 中國資金管理網
$mail->CharSet = "GB2312"; // 這裡指定字元集!
$mail->Encoding = "base64";
$mail->AddAddress($sendto_email,$user_name); // 收件者郵箱和姓名
$mail->AddReplyTo("treasurer@treasurer.org.cn","中國資金管理網");
//$mail->WordWrap = 50; // set word wrap
//$mail->AddAttachment("/var/tmp/file.tar.gz"); // attachment 附件1
//$mail->AddAttachment("/tmp/image.jpg", "new.jpg"); //附件2
$mail->IsHTML(true); // send as HTML
$mail->Subject = $subject;
// 郵件內容 可以直接發送html檔案
$mail->Body = <<<EOT
<html><head>
<meta http-equiv="Content-Language" c>
<meta http-equiv="Content-Type" c>
<body>
{$user_name}你好,歡迎您註冊本站使用者!
</body>
</html>
EOT;
$mail->AltBody ="text/html";
if($mail->Send())
{
info_write("ok.txt","$user_name發送成功");
}
else {
info_write("falied.txt","$user_name失敗,錯誤資訊$mail->ErrorInfo");
}
}
// 發送Email函數結束
// 寫入發送結果函數
function info_write($filename,$info_log)
{
$info.= $info_log;
$info.="\r\n";
$fp = fopen ($filename,a);
fwrite($fp,$info);
fclose($fp);
}
//定時跳轉頁面 函數 其中 1000是時間,1秒, 您可以自訂
function redirect($url)
{
echo "<script>
function redirect() {
window.location.replace('$url');
}
window.setTimeout('redirect();', 15000);
</script>";
}
//讀取文本 郵件地址 您也可以讀 資料庫
$filename = "email.txt";
$fp = fopen($filename,"r");
$contents = fread($fp,filesize($filename));
$num_email=explode("\r\n",$contents);
$len=count($num_email);
fclose($fp);
// 參數說明(發送到, 郵件主題, 郵件內容, 附加資訊, 使用者名稱)
$i = $_GET['action'];
$i++;
if ($i<$len)
{
$rs=explode("@",$num_email[$i]);
$user_name = $rs['0'];
echo "正在發送第{$i}封({$num_email[$i]})郵件......";
smtp_mail($num_email[$i], 'Treasury Online周刊第十期', $body, 'http://www.treasurer.org.cn/', $user_name);
redirect("?action=$i");
}
else {
echo "郵件全部發送完畢";
exit;
}
?>