Phpmailer指定多位收件人

2021-07-23 14:06:59 字數 591 閱讀 1453

addaddress--方法 

出自:phpmailer::addaddress(),檔案:class.phpmailer.php 

說明:增加收件人。引數1為收件人郵箱,引數2為收件人稱呼。 

addaddress:增加收件人。不是指定某個,而是再增加乙個。。。 

所以指定多個收件人得方法很簡單: 

[code_lite]

<?php 

require '../class/class.phpmailer.php'; 

... 

$mail = new phpmailer(true); //啟動乙個新的例項 

$mail->issmtp(); // 設定smtp 引數 

$mail->smtpauth = true; // 啟用smtp認證 

//收件人 

$mail->addaddress("[email protected]"); 

$mail->addaddress("[email protected]");[/code_lite] 

增加多位抄送人、密抄的方法也如此。 

PHPMailer 郵件傳送

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

PHPmailer 郵件群發

phpmailer郵件類傳送郵件範例及 指定多個收件人 xjjtjt.cn phpmailer是乙個用於傳送電子郵件的php函式包。它提供的功能包括 支援多種郵件編碼包括 8bit,base64,binary和quoted printable 支援smtp驗證 支援冗餘smtp伺服器 支援帶附件的郵...

phpmailer郵箱傳送

引入phpmailer的核心檔案 require once common phpmailer master src phpmailer.php require once common phpmailer master src smtp.php use phpmailer phpmailer 例項化p...