发现一个发送mime邮件的类。


  $this->add_attachment($this->body, "", "text/plain");

            $mime .= "MIME-Version: 1.0\n" . $this->build_multipart();

            return $mime;
        }


        /*
         *     void send()
         *     寄出這封信(最後一個被呼叫的函式)
         */

        function send() {
            $mime = $this->get_mail(false);
            mail($this->to, $this->subject, "", $mime);
        }

    }  // 類別結束

?>
Copyright © 2008 chengduxinxi.com All Rights Reserved PHP编程开发 由朝夕网络维护