PHPmailer 郵件群發

2021-07-23 21:33:50 字數 1321 閱讀 2551

phpmailer郵件類傳送郵件範例及**(指定多個收件人) xjjtjt.cn

phpmailer是乙個用於傳送電子郵件的php函式包。它提供的功能包括:

*.支援多種郵件編碼包括:8bit,base64,binary和quoted-printable

*.支援smtp驗證

*.支援冗餘smtp伺服器

*.支援帶附件的郵件和html格式的郵件

*.自定義郵件頭

*.支援在郵件中嵌入

*.除錯靈活

*.經測試相容的smtp伺服器包括:sendmail,qmail,postfix,imail,exchange等

*.可執行在任何平台之上

範例就不貼出來了,大家可以開啟下面的**看

<?php

// 請求 phpmailer類 檔案

require_once("class.phpmailer.php");

//傳送email函式

function smtp_mail ( $sendto_email, $subject, $body, $extra_hdrs, $user_name)

else

} // 傳送email函式結束

// 寫入傳送結果函式

function info_write($filename,$info_log)

//定時跳轉頁面 函式 其中 1000是時間,1秒, 您可以自定義

function redirect($url)

[color=#ff6600]//讀取文字 郵件位址 您也可以讀 資料庫[/color]

$filename = "email.txt";

$fp = fopen($filename,"r");

$contents = fread($fp,filesize($filename));

$list_email=explode("\r\n",$contents);

$len=count($list_email);

fclose($fp);

// 引數說明(傳送到, 郵件主題, 郵件內容, 附加資訊, 使用者名稱)

$i = $_get['action'];

$i++;

if ($i<$len)

封()郵件......";

smtp_mail($list_email[$i], 'treasurery online 週刊第十二期', $body, '', $user_name);

redirect("?action=$i");

}else

?>

php code

PHPMailer 郵件傳送

一般有兩個檔案,左邊的資料夾是包含class類檔案等,右邊就是傳送配置檔案 require phpmailer class.phpmailer.php mail new phpmailer mail issmtp mail charset utf 8 mail host smtp.qq.com 這裡...

PHPMailer 傳送郵件

上篇文章php mail 方法傳送郵件部分郵箱無法收到郵件問題 提到要介紹一下phpmailer這款免費開源的php 郵件程式,下面我們來看看吧,以下資料全部來自phpmailer官方 phpmailer 也是乙個功能強大的郵件類 phpmailer的主要功能特點 支援郵件 s mime加密的數字簽...

使用phpmailer傳送郵件

說起來還真不好意思.弄個郵件左左右右差不多弄了2周,當然了,我請了一周的假期.我們公司的郵件發不出去了,原來的郵件是用的php自帶的mail 函式.可能是配置問題吧.這個不是我要處理的問題,暫且不去找原因了,解決辦法,就是用乙個smtp 發郵件的外掛程式,來處理,要傳送的內容,主題都不用改動 解壓後...