动网论坛,站长建站首选,国内使用量最多的论坛软件 动网论坛官方技术讨论区 站长工具 申请属于您自己的免费论坛
首页 | 新闻资讯 | 网站运营 | 网络编程 | 数据库 | 服务器 | 网页设计 | 图像媒体 | 网络应用 | 搜索优化 | 资源下载 | 动网主机 | DVBOX
    本站内  互联网 ASP论坛  ASP.Net论坛  PHP论坛
   PHP → 阅读文章

 例子:用PHP3发送MIME格式的邮件(可以发附件了哦)

作者来源: 
阅读 数 367 人次 , 2006-4-18 17:30:00 


   这有个例子:

/*
*  Class mime_mail
*  Original implementation by Sascha Schumann <sascha@schumann.cx>
*  Modified by Tobias Ratschiller <tobias@dnet.it>:
*      - General code clean-up
*      - separate body- and from-property
*      - killed some mostly un-necessary stuff
*/

class mime_mail
{
var $parts;
var $to;
var $from;
var $headers;
var $subject;
var $body;

/*
  *     void mime_mail()
  *     class constructor
  */
function mime_mail()
  {
  $this->parts = array();
  $this->to = "";
  $this->from = "";
  $this->subject = "";
  $this->body = "";
  $this->headers = "";
  }

/*
  *     void add_attachment(string message, [string name], [string ctype])
  *     Add an attachment to the mail object
  */
function add_attachment($message, $name = "", $ctype =
"application/octet-stream")
  {
  $this->parts[] = array (
                          "ctype" => $ctype,
                          "message" => $message,
                          "encode" => $encode,
                          "name" => $name
                          );
  }

/*
*      void build_message(array part=
*      Build message parts of an multipart mail
*/
function build_message($part)
{
$message = $part["message"];
$message = chunk_split(base64_encode($message));
$encoding = "base64";
return "Content-Type: ".$part["ctype"].
                        ($part["name"]?"; name=\"".$part["name"]."\"":"").
                        "\nContent-Transfer-Encoding: $encoding".
            "\nContent-Disposition: inline".
            ($part["name"]?"; filename=\"".$part["name"]."\"":"").
            "\n\n$message\n";
}

/*
*      void build_multipart()
*      Build a multipart mail
*/
function build_multipart()
{
$boundary = "b".md5(uniqid(time()));
$multipart = "Content-Type: multipart/mixed; boundary = \"$boundary\"\n\nThis
is a MIME encoded message.\n\n--$boundary";

for($i = sizeof($this->parts)-1; $i >= 0; $i--)
    {
    $multipart .= "\n".$this->build_message($this->parts[$i])."--$boundary";
    }
return $multipart.= "--\n";
}

/*
*      void send()
*      Send the mail (last class-function to be called)
*/
function send()
{
$mime = "";
if (!empty($this->from))
    $mime .= "From: ".$this->from."\n";
if (!empty($this->headers))
    $mime .= $this->headers."\n";

if (!empty($this->body))
    $this->add_attachment($this->body, "", "text/plain");
$mime .= "MIME-Version: 1.0\n".$this->build_multipart();
mail($this->to, $this->subject, "", $mime);
}
}; // end of class

/*
* Example usage
*

$attachment = fread(fopen("test.jpg", "r"), filesize("test.jpg"));

$mail = new mime_mail();
$mail->from = "foo@bar.com";
$mail->headers = "Errors-To: foo@bar.com";
$mail->to = "bar@foo.com";
$mail->subject = "Testing...";
$mail->body = "This is just a test.";
$mail->add_attachment("$attachment", "test.jpg", "image/jpeg");
$mail->send();

*/
?>



      
 本文Tags邮件  
 收藏本文  打印本文  论坛讨论  关闭窗口
· 上一篇:Apache2.0a1新特性(英文,我的英文太差,只能读懂。)
· 下一篇:网页推荐:PHP4.03在linux下的安装
· 用PHP和ACCESS写聊天室(九)
· BBS(php & mysql)完整版(七)
· PHP编程常用技巧四则
· PHP的面向对象编程
· 最简单的PHP程序--记数器


关于本站 | 联系我们 | 业务合作 | 客户案例 | 诚聘英才 | 广告合作 | 收藏本站
海口动网先锋网络科技有限公司版权所有
Copyright © 2000 - 2006 Cndw.Com
中华人民共和国电信与信息服务业务经营许可证编号 琼 ICP 020077