给多个地址发邮件的类

人生如丶戏子

人生如丶戏子

2016-01-29 14:51

给多个地址发邮件的类,给多个地址发邮件的类
  <?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) ) {  
              
展开更多 50%)
分享

猜你喜欢

给多个地址发邮件的类

PHP
给多个地址发邮件的类

沃邮箱怎么发邮件

手机软件 应用软件
沃邮箱怎么发邮件

s8lol主宰符文怎么配

英雄联盟 网络游戏
s8lol主宰符文怎么配

给员工发邮件时如何将Excel中的邮箱地址批量导入foxmail

foxmail 软件教程 电脑应用 excel
给员工发邮件时如何将Excel中的邮箱地址批量导入foxmail

foxmail怎么自动转发邮件 foxmail自动转发邮件教程

软件教程
foxmail怎么自动转发邮件  foxmail自动转发邮件教程

lol偷钱流符文搭配推荐

英雄联盟 网络游戏
lol偷钱流符文搭配推荐

outlook怎么发邮件

电子邮件地址 邮箱 软件教程
outlook怎么发邮件

Outlook Express只能收邮件不能发邮件

电脑网络
Outlook Express只能收邮件不能发邮件

lolAD刺客新符文搭配推荐

英雄联盟
lolAD刺客新符文搭配推荐

动态新闻发布的实现及其技巧

动态新闻发布的实现及其技巧

《怪物猎人4G》狩猎猫选择指南 猫的技能分析

《怪物猎人4G》狩猎猫选择指南 猫的技能分析
下拉加载更多内容 ↓