给多个地址发邮件的类


Posted in PHP onOctober 09, 2006

<?php  

////////////////////////////////////////////////////////////  
//   EmailClass 0.5  
//   class for sending mail  
//  
//   Paul Schreiber  
//   php@paulschreiber.com  
//   http://paulschreiber.com/  
//  
//   parameters  
//   ----------  
//   - subject, message, senderName, senderEmail and toList are required  
//   - ccList, bccList and replyTo are optional  
//   - toList, ccList and bccList can be strings or arrays of strings  
//     (those strings should be valid email addresses  
//  
//   example  
//   -------  
//   $m = new email ( "hello there",            // subject  
//                    "how are you?",           // message body  
//                    "paul",                   // sender's name  
//                    "foo@foobar.com",         // sender's email  
//                    array("paul@foobar.com", "foo@bar.com"), // To: recipients  
//                    "paul@whereever.com"      // Cc: recipient  
//                   );  
//  
//       print "mail sent, result was" . $m->send();  
//  
//  
//  

if ( ! defined( 'MAIL_CLASS_DEFINED' ) ) {  
        define('MAIL_CLASS_DEFINED', 1 );  

class email {  

        // the constructor!  
        function email ( $subject, $message, $senderName, $senderEmail, $toList, $ccList=0, $bccList=0, $replyTo=0) {  
                $this->sender = $senderName . " <$senderEmail>";  
                $this->replyTo = $replyTo;  
                $this->subject = $subject;  
                $this->message = $message;  

                // set the To: recipient(s)  
                if ( is_array($toList) ) {  
                        $this->to = join( $toList, "," );  
                } else {  
                        $this->to = $toList;  
                }  

                // set the Cc: recipient(s)  
                if ( is_array($ccList) && sizeof($ccList) ) {  
                        $this->cc = join( $ccList, "," );  
                } elseif ( $ccList ) {  
                        $this->cc = $ccList;  
                }  

                // set the Bcc: recipient(s)  
                if ( is_array($bccList) && sizeof($bccList) ) {  
                        $this->bcc = join( $bccList, "," );  
                } elseif ( $bccList ) {  
                        $this->bcc = $bccList;  
                }  

        }  

        // send the message; this is actually just a wrapper for   
        // PHP's mail() function; heck, it's PHP's mail function done right :-)  
        // you could override this method to:  
        // (a) use sendmail directly  
        // (b) do SMTP with sockets  
        function send () {  
                // create the headers needed by PHP's mail() function  

                // sender  
                $this->headers = "From: " . $this->sender . "\n";  

                // reply-to address  
                if ( $this->replyTo ) {  
                        $this->headers .= "Reply-To: " . $this->replyTo . "\n";  
                }  

                // Cc: recipient(s)  
                if ( $this->cc ) {  
                        $this->headers .= "Cc: " . $this->cc . "\n";  
                }  

                // Bcc: recipient(s)  
                if ( $this->bcc ) {  
                        $this->headers .= "Bcc: " . $this->bcc . "\n";  
                }  

                return mail ( $this->to, $this->subject, $this->message, $this->headers );  
        }  
}  

}  
?>  

PHP 相关文章推荐
PHP获取网站域名和地址的代码
Aug 17 PHP
PHP导航下拉菜单的实现如此简单
Sep 22 PHP
php中利用explode函数分割字符串到数组
Feb 08 PHP
phpstorm配置Xdebug进行调试PHP教程
Dec 01 PHP
php读取文件内容到数组的方法
Mar 16 PHP
WordPress中创建用户角色的相关PHP函数使用详解
Dec 25 PHP
PHP在linux上执行外部命令的方法
Feb 06 PHP
php+mysql+ajax实现单表多字段多关键词查询的方法
Apr 15 PHP
Redis在Laravel项目中的应用实例详解
Aug 11 PHP
PHP实现的一致性Hash算法详解【分布式算法】
Mar 31 PHP
PHP生成指定范围内的N个不重复的随机数
Mar 18 PHP
php框架知识点的整理和补充
Mar 01 PHP
用PHP调用数据库的存贮过程!
Oct 09 #PHP
PHP脚本的10个技巧(2)
Oct 09 #PHP
PHP脚本的10个技巧(1)
Oct 09 #PHP
图书管理程序(三)
Oct 09 #PHP
一个从别的网站抓取信息的例子(域名查询)
Oct 09 #PHP
一个PHP+MSSQL分页的例子
Oct 09 #PHP
基于文本的留言簿
Oct 09 #PHP
You might like
PHP中curl_setopt函数用法实例分析
2015/04/16 PHP
PHP实现的登录,注册及密码修改功能分析
2016/11/25 PHP
php并发加锁问题分析与设计代码实例讲解
2021/02/26 PHP
贴一个在Mozilla中常用的Javascript代码
2007/01/09 Javascript
用window.location.href实现刷新另个框架页面
2007/03/07 Javascript
javascript Ext JS 状态默认存储时间
2009/02/15 Javascript
浅谈javascript 面向对象编程
2009/10/28 Javascript
基于JQuery的密码强度验证代码
2010/03/01 Javascript
Jquery常用技巧收集整理篇
2010/11/14 Javascript
简介AngularJS中$http服务的用法
2016/02/06 Javascript
深入理解Vue-cli搭建项目后的目录结构探秘
2017/07/13 Javascript
express默认日志组件morgan的方法
2018/04/05 Javascript
JavaScript ES6常用基础知识总结
2019/02/09 Javascript
python for循环输入一个矩阵的实例
2018/11/14 Python
对python pandas读取剪贴板内容的方法详解
2019/01/24 Python
python使用 zip 同时迭代多个序列示例
2019/07/06 Python
python使用opencv实现马赛克效果示例
2019/09/28 Python
Django中modelform组件实例用法总结
2020/02/10 Python
python中68个内置函数的总结与介绍
2020/02/24 Python
django ListView的使用 ListView中获取url中的参数值方式
2020/03/27 Python
python中有函数重载吗
2020/05/28 Python
基于Html5实现的语音搜索功能
2019/05/13 HTML / CSS
装潢设计专业推荐信模板
2013/11/26 职场文书
应届生自我鉴定
2013/12/11 职场文书
毕业生求职信的经典写法
2014/01/31 职场文书
妈妈的账单教学反思
2014/02/06 职场文书
人力资源部经理岗位职责规定
2014/02/23 职场文书
文化活动实施方案
2014/03/28 职场文书
食品安全工作方案
2014/05/07 职场文书
计算机售后服务承诺书
2014/05/30 职场文书
政府法律服务方案
2014/06/14 职场文书
学习优秀共产党员先进事迹思想报告
2014/09/17 职场文书
教师群众路线教育实践活动学习笔记
2014/11/05 职场文书
工作经验交流材料
2014/12/30 职场文书
超搞笑婚前保证书
2015/05/08 职场文书
小学生一年级(书信作文)
2019/08/13 职场文书