发现一个发送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); } } // 類別結束 ?> |
查看所有评论
