php发邮件给多人
php发邮件给多人 **php发邮件给多人****[PHP]代码**```{.php}//class.emailer.phpclass Emailer{ private $sender; private $recipients; private $subject; private $body; function __construct($sender)
php发邮件给多人
[PHP]代码
//class.emailer.php class Emailer { private $sender; private $recipients; private $subject; private $body; function __construct($sender) { $this->sender = $sender; $this->recipients = array(); } public function addRecipients($recipient) { array_push($this->recipients, $recipient); } public function setSubject($subject) { $this->subject = $subject; } public function setBody($body) { $this->body = $body; } public function sendEmail() { foreach ($this->recipients as $recipient) { $result = mail($recipient, $this->subject, $this->body, "From: {$this->sender}\r\n"); if ($result) echo "Mail successfully sent to {$recipient}<br/>"; } } }
- 上一篇:php实现文件缓存代码
- 下一篇:php实现时间友好格式化
精彩图集
精彩文章