<?xml version="1.0" encoding="gb2312"?>
<rss version="2.0">
<channel>
<title>邮件处理</title>
<link>/html/edu/php/php12/index.html</link>
<description>编程开发 / PHP / 邮件处理</description>
<language>zh-cn</language>
<generator>&lt;a href='http://www.souzz.net' target='_blank'&gt;搜站长&lt;/a&gt;</generator>
<webmaster>lyjrich@sina.com</webmaster>
<item>
    <title>使用php通过smtp发送邮件新手指南</title>
    <link>/html/edu/php/php12/6826.html</link>
    <description>由于php没有提供现成的smtp函数，却提供了一个功能不甚灵活的mail()函数，这个函数需要服务器配置上的支持，并且不支持smtp验证，在很多场合无法正常的工作，因此不建议使用。本文的目的在于为新手指明方向，并没有涉及那些高级的内容，一来本身水平有限，二来也担心不</description>
    <pubDate>2005-10-12</pubDate>
    <category>邮件处理</category>
    <author>未知</author>
    <comments>未知</comments>
</item>
<item>
    <title>判断字符串emailAddr是否为合法的email格式</title>
    <link>/html/edu/php/php12/6827.html</link>
    <description></description>
    <pubDate>2005-09-27</pubDate>
    <category>邮件处理</category>
    <author>未知</author>
    <comments>未知</comments>
</item>
<item>
    <title>使用PHP开发qmail邮件服务器管理系统</title>
    <link>/html/edu/php/php12/6828.html</link>
    <description>电子邮件在网络中占有很重要的地位。目前，在企业中运行的邮件服务器均用各自独立的管理系统来实现账号创建、口令修改、邮箱扩容、删除邮箱等功能。当邮箱用户达到一定数量时，邮件管理员的日常维护工作显得极为繁重，这就需要将一部分管理任务（如账号申请）实现自动化</description>
    <pubDate>2005-06-21</pubDate>
    <category>邮件处理</category>
    <author>未知</author>
    <comments>未知</comments>
</item>
<item>
    <title>用SMTP传送邮件时的问题</title>
    <link>/html/edu/php/php12/6829.html</link>
    <description>下面是我找到的一个直接使用smtp发送邮件的php例子程序(经改编), 但是服务器方总是提示: 550 system busy! 并且邮件无法发送. 那位知道如何处理? 另: 对于smtp服务器需要密码的情况该如何处理验证呢? sory , 刚刚看到 smtp 发送邮件的问题 (链接的这个帖子怎么不是精华</description>
    <pubDate>2005-06-15</pubDate>
    <category>邮件处理</category>
    <author>未知</author>
    <comments>未知</comments>
</item>
<item>
    <title>检查email地址格式的代码</title>
    <link>/html/edu/php/php12/6830.html</link>
    <description>这是一个完全符合RFC2822和RFC2821的代码。只检查单个email地址。 function check_email_address($email) { // First, we check that there's one @ symbol, and that the lengths are right if (!ereg(&quot;[^@]{1,64}@[^@]{1,255}&quot;, $email)) { // Email invalid because</description>
    <pubDate>2005-06-14</pubDate>
    <category>邮件处理</category>
    <author>未知</author>
    <comments>未知</comments>
</item>
<item>
    <title>用php发送带附件的Email</title>
    <link>/html/edu/php/php12/6831.html</link>
    <description>参考了一下网上的文章。俗话说，天下文章一大抄，看你会抄不会抄。关键是能为我所用，这是最重要的。废话不多讲，let‘s go。 其实发mail很简单，php有现成的函数，可以参考php 的 manual，特别是第四个例子，讲的很详细。 关键是怎么把上传附件跟邮件发送结合起来。关</description>
    <pubDate>2005-06-14</pubDate>
    <category>邮件处理</category>
    <author>未知</author>
    <comments>未知</comments>
</item>
<item>
    <title>PHP的一个完整SMTP类(解决邮件服务器需要验证时的问题)</title>
    <link>/html/edu/php/php12/6832.html</link>
    <description>smtp.php ?php class smtp { /* Public Variables */ var $smtp_port; var $time_out; var $host_name; var $log_file; var $relay_host; var $debug; var $auth; var $user; var $pass; /* Private Variables */ var $sock; /* Constractor */ function smtp($relay_h</description>
    <pubDate>2005-06-12</pubDate>
    <category>邮件处理</category>
    <author>未知</author>
    <comments>未知</comments>
</item>
<item>
    <title>php写的发送附件的程序(一)</title>
    <link>/html/edu/php/php12/6834.html</link>
    <description>? error_reporting(63); include('class.html_mime_mail.inc'); /*************************************** ** Example of usage. ***************************************/ /*************************************** ** Read the file background.gif into ** $backg</description>
    <pubDate>2005-06-09</pubDate>
    <category>邮件处理</category>
    <author>未知</author>
    <comments>未知</comments>
</item>
<item>
    <title>php写的发送附件的程序(二)</title>
    <link>/html/edu/php/php12/6833.html</link>
    <description>?php class html_mime_mail{ var $headers; var $body; var $multipart; var $mime; var $html; var $html_text; var $html_images = array(); var $cids = array(); var $do_html; var $parts = array(); /*************************************** ** Constructor fun</description>
    <pubDate>2005-06-09</pubDate>
    <category>邮件处理</category>
    <author>未知</author>
    <comments>未知</comments>
</item>
<item>
    <title>如何用PHP发电子邮件(1)</title>
    <link>/html/edu/php/php12/6836.html</link>
    <description>一个发送E-MAIL的脚本也许是你能够在Web 站点上找到的最普通的脚本之一了,虽然它很简单,一个邮件脚本有时会令程序员非常沮丧.PHP中有一个叫做mail()的函数,它只需要知道接收方的地址和信件主体就可以发送邮件,但是要让mail()按你的意思运行你还需要解决一些棘手的问题.</description>
    <pubDate>2004-12-02</pubDate>
    <category>邮件处理</category>
    <author>未知</author>
    <comments>未知</comments>
</item>
<item>
    <title>如何用PHP发电子邮件(2)</title>
    <link>/html/edu/php/php12/6835.html</link>
    <description>mail([接收方], [主题], [邮件主体], [头信息]); 你只需要简单的用列表中的下一个名字来替换[接收方].假设你已经有了一个电子邮件地址的数组: $addresses = array(me@mycompany.com, you@yourcompany.com, someone@otherplace.com); 你所需要做的就是循环遍历这个数组,</description>
    <pubDate>2004-12-02</pubDate>
    <category>邮件处理</category>
    <author>未知</author>
    <comments>未知</comments>
</item>
<item>
    <title>解码mime邮件的代码</title>
    <link>/html/edu/php/php12/6837.html</link>
    <description>function decode_mime_string ($string) { $pos = strpos($string, '=?'); if (!is_int($pos)) { return $string; } $preceding = substr($string, 0, $pos); // save any preceding text $search = substr($string, $pos+2, 75); /* the mime header spec says this is</description>
    <pubDate>2004-12-01</pubDate>
    <category>邮件处理</category>
    <author>未知</author>
    <comments>未知</comments>
</item>
<item>
    <title>用PHP3阅读IMAP邮件</title>
    <link>/html/edu/php/php12/6838.html</link>
    <description>你是不是抱怨过，当你呆在一个朋友的房子或拜访亲戚时，想检查邮件但是不知道你的POP/IMAP设置。或者更糟的是，他们没有POP或IMAP软件？ 基于Web的电子邮件似乎只是在最近才在网上被谈起。这里就是如何使用PHP来生成一个快速的，简单的和有效的IMAP或POP 邮件阅读器。一</description>
    <pubDate>2004-10-08</pubDate>
    <category>邮件处理</category>
    <author>未知</author>
    <comments>未知</comments>
</item>
<item>
    <title>实现用php发送带附件的邮件</title>
    <link>/html/edu/php/php12/6839.html</link>
    <description>我经常听到这样一个问题：“我有一个从网站发来的合同。我如何给 通过表单发送的电子邮件增加一个附件呢？” 首先我要说的是要做到这个没有什么简单的办法。你要很好的理解PHP或其它的服务器端的脚本语言。当然你还要一个真正支持PHP的网站的账号。如果满足了这个前提，</description>
    <pubDate>2004-09-20</pubDate>
    <category>邮件处理</category>
    <author>未知</author>
    <comments>未知</comments>
</item>
<item>
    <title>PHP邮件专题</title>
    <link>/html/edu/php/php12/6840.html</link>
    <description>PHP SMTP类 ? /*********************************** PHP MIME SMTP ver 1.0 Powered by Boss_ch， Unigenius soft ware co. Ltd All rights reserved, Copyright 2000 ; 本类用 PHP 通过 smtp sock 操作发送 MIME 类型的邮件，可以发送 HTML 格式的正文、附件，采用 ba</description>
    <pubDate>2004-05-07</pubDate>
    <category>邮件处理</category>
    <author>未知</author>
    <comments>未知</comments>
</item>
<item>
    <title>用Socket发送电子邮件(利用需要验证的SMTP服务器)</title>
    <link>/html/edu/php/php12/6841.html</link>
    <description>? * 名称：用Socket发送电子邮件 * 描述：本类实现了直接使用需要验证的SMTP服务器直接发送邮件，参考文章《用Socket发送电子邮件》作者：limodou * 此文章比较早，他是用不用验证SMTP服务器发送邮件，现在基本上SMTP服务器都需要验证了，所以这个文章里的类 意义也不是</description>
    <pubDate>2004-04-21</pubDate>
    <category>邮件处理</category>
    <author>未知</author>
    <comments>未知</comments>
</item>
<item>
    <title>发送MIME邮件~~（其实我对他的格式一窍不通，是看着OUTLOOK中的源码写的）</title>
    <link>/html/edu/php/php12/6815.html</link>
    <description>? class mime_mail { var $boundary0=----=_NextPart_000_00EE_01C07425.958FDFE0;//三条分界，0是附件，2是HTML，1是要附加的图片 var $boundary1=----=_NextPart_001_00EF_01C07425.958FDFE0; var $boundary2=----=_NextPart_002_00F0_01C07425.958FDFE0; var $body;</description>
    <pubDate>2003-07-25</pubDate>
    <category>邮件处理</category>
    <author>未知</author>
    <comments>未知</comments>
</item>
<item>
    <title>RFC821-简单邮件传输协议（SMTP）中文版 - 2</title>
    <link>/html/edu/php/php12/6825.html</link>
    <description>本文出自: 作者: (2001-11-23 08:08:00) 4.1.2. COMMAND语法格式 命令是由命令码和其后的参数域组成的。命令码是四个字母组成的，不区别 大小写。因为下面的命令的作用是相同的： MAIL Mail mail MaIl mAIl 这对于引导任何参数值的标记也是适用的，如TO和to就是一样的。</description>
    <pubDate>2003-07-25</pubDate>
    <category>邮件处理</category>
    <author>未知</author>
    <comments>未知</comments>
</item>
<item>
    <title>用PHP实现POP3邮件的收取（三）</title>
    <link>/html/edu/php/php12/6824.html</link>
    <description>应用实例 （作者：陈俊清 2000年10月18日 11:58） POP3收取邮件的类在前面的文章中已经给大家做了详细的介绍，下面我们来看看如何应用这个类： ? include(pop3.inc.php); $host=pop.china.com; $user=boss_ch; $pass=026007; $rec=new pop3($host,110,2); if (!$rec-ope</description>
    <pubDate>2003-07-25</pubDate>
    <category>邮件处理</category>
    <author>未知</author>
    <comments>未知</comments>
</item>
<item>
    <title>RFC821-简单邮件传输协议（SMTP）中文版 - 3</title>
    <link>/html/edu/php/php12/6823.html</link>
    <description>本文出自: 作者: (2001-11-23 09:08:00) 第二步：转发主机到目的主机 R: 220 BBN-VAX.ARPA Simple Mail Transfer Service Ready S: HELO USC-ISIE.ARPA R: 250 BBN-VAX.ARPA S: MAIL FROM:@USC-ISIE.ARPA:JQP@MIT-AI.ARPA R: 250 OK S: RCPT TO:Jones@BBN-VAX.ARPA R: 2</description>
    <pubDate>2003-07-25</pubDate>
    <category>邮件处理</category>
    <author>未知</author>
    <comments>未知</comments>
</item>
<item>
    <title>使用php的编码功能-实例调用(3)</title>
    <link>/html/edu/php/php12/6845.html</link>
    <description></description>
    <pubDate>2003-07-25</pubDate>
    <category>邮件处理</category>
    <author>未知</author>
    <comments>未知</comments>
</item>
<item>
    <title>NT下基于邮件服务软件(IMAIL)的邮件发送程序--(网络版)</title>
    <link>/html/edu/php/php12/6802.html</link>
    <description>如果你无法在服务器上安装IMAIL，那只能通过socket来发送邮件。但是如果你幸运的话，也可以用163/sina的 smtp服务。 例程如下(原程序由马毅兄提供)： HTML HEAD TITLEMail Form anywhere /TITLE /HEAD BODY ? if($sendit) { $smtpserver=202.110.200.242 ;//将此处设为I</description>
    <pubDate>2003-07-25</pubDate>
    <category>邮件处理</category>
    <author>未知</author>
    <comments>未知</comments>
</item>
<item>
    <title>[转帖]PHP的类--功能齐全的发送邮件类</title>
    <link>/html/edu/php/php12/6842.html</link>
    <description>下面这个类的功能则很强大,不但能发html格式的邮件,还可以发附件 class Email { //---设置全局变量 var $mailTo = &quot;&quot;; // 收件人 var $mailCC = &quot;&quot;; // 抄送 var $mailBCC = &quot;&quot;; // 秘密抄送 var $mailFrom = &quot;&quot;; // 发件人 var $mailSubject = &quot;&quot;; // 主题 var $mailT</description>
    <pubDate>2003-07-25</pubDate>
    <category>邮件处理</category>
    <author>未知</author>
    <comments>未知</comments>
</item>
<item>
    <title>使用php的编码功能-问题发现(1)</title>
    <link>/html/edu/php/php12/6843.html</link>
    <description>环境:中文w2k+apache+php4.06(smtp在linux上) 我在使用mail函数发信的时候发现,如果我的subject是中文，那么收到的mail就会把中文显示为XXXX 调用过程如下: ?php $to = customer@263.net; $subject = 商城; $msg = 注册会员成功br; $msg .= 会员名：waynebr; $msg .= 密</description>
    <pubDate>2003-07-25</pubDate>
    <category>邮件处理</category>
    <author>未知</author>
    <comments>未知</comments>
</item>
<item>
    <title>使用php的编码功能-mime.inc(2)</title>
    <link>/html/edu/php/php12/6844.html</link>
    <description>?php // $Horde: horde/lib/MIME.php,v 1.63 2001/08/08 21:00:27 chuck Exp $ $mime_types = array( TYPETEXT = 'text', 'text' = TYPETEXT, TYPEMULTIPART = 'multipart', 'multipart' = TYPEMULTIPART, TYPEMESSAGE = 'message', 'message' = TYPEMESSAGE, TYPEAPPLI</description>
    <pubDate>2003-07-25</pubDate>
    <category>邮件处理</category>
    <author>未知</author>
    <comments>未知</comments>
</item>
<item>
    <title>SMTP协议原始命令码和工作原理</title>
    <link>/html/edu/php/php12/6822.html</link>
    <description>http://www.linuxforum.net Jephe Wu (2001-04-21 18:16:42) 1.SMTP是工作在两种情况下：一是电子邮件从客户机传输到服务器；二是从某一个服务器传输到另一个 服务器 2.SMTP是个请求/响应协议，命令和响应都是基于ASCII文本，并以CR和LF符结束。响应包括一个表示返 回状</description>
    <pubDate>2003-07-25</pubDate>
    <category>邮件处理</category>
    <author>未知</author>
    <comments>未知</comments>
</item>
<item>
    <title>POP3协议命令原始码及工作原理</title>
    <link>/html/edu/php/php12/6821.html</link>
    <description>http://www.linuxforum.net Jephe Wu (2001-04-21 18:17:49) 一 简介： 1. POP适用于C/S结构的脱机模型的电子邮件协议，目前已发展到第三版，称POP3。脱机模型即不能在线 操作，不像IMAP4（netscape支持IMAP4） 2. 当客户机与服务器连接并查询新电子邮件时，被该客户机</description>
    <pubDate>2003-07-25</pubDate>
    <category>邮件处理</category>
    <author>未知</author>
    <comments>未知</comments>
</item>
<item>
    <title>发现一个发送mime邮件的类。</title>
    <link>/html/edu/php/php12/6807.html</link>
    <description>?php // 存成 mime_mail.inc 檔案 class mime_mail { var $parts; var $to; var $from; var $headers; var $subject; var $body; /* *void mime_mail() *類別建構者 */ function mime_mail() { $this-parts = array(); $this-to = ; $this-from = ; $this-subject = ; $</description>
    <pubDate>2003-07-25</pubDate>
    <category>邮件处理</category>
    <author>未知</author>
    <comments>未知</comments>
</item>
<item>
    <title>用PHP发送有附件的电子邮件</title>
    <link>/html/edu/php/php12/6806.html</link>
    <description>我经常听到这样一个问题：我有一个从网站发来的合同。我如何给通过表单发送的电子邮件增加一个附件呢？ 首先我要说的是要做到这个没有什么简单的办法。你要很好的理解PHP或 其它的服务器端的脚本语言。当然你还要一个真正支持PHP的网站的账号。如果满足了这个前提，在你</description>
    <pubDate>2003-07-25</pubDate>
    <category>邮件处理</category>
    <author>未知</author>
    <comments>未知</comments>
</item>
<item>
    <title>不会PHP，这个好象是“收发”邮件的一个程序，估计是好东西。</title>
    <link>/html/edu/php/php12/6805.html</link>
    <description>?php if ($EMAIL_INC) return; $EMAIL_INC=defined; define( SmtpPort,25); class Pop3 { var $subject;// 邮件主题 var $from_email;// 发件人地址 var $from_name;// 发件人姓名 var $to_email;// 收件人地址 var $to_name;// 收件人姓名 var $body;// 邮件内容 var $</description>
    <pubDate>2003-07-25</pubDate>
    <category>邮件处理</category>
    <author>未知</author>
    <comments>未知</comments>
</item>
<item>
    <title>网上找到的两个PHP发送邮件的例子，很不错，贴出来给初学者参考吧（不知道是否有兄弟</title>
    <link>/html/edu/php/php12/6804.html</link>
    <description>Advanced Example Here we will show the full capabilities of the PHP mail function. PHP Code: ?php echo htmlbody; $recipient = Kris Arndt karn@nucleus.com,npl@nucleus.com; $subject = Testing the mail function; $message = Hello!\n\nThis is the body of</description>
    <pubDate>2003-07-25</pubDate>
    <category>邮件处理</category>
    <author>未知</author>
    <comments>未知</comments>
</item>
<item>
    <title>网上找到的两个PHP发送邮件的例子，很不错，贴出来给初学者参考吧（不知道是否有兄弟</title>
    <link>/html/edu/php/php12/6803.html</link>
    <description>Send Mail in PHP In this example, we will show how to send an email message to someone in PHP. PHP Code: ?php echo htmlbody; mail (karn@nucleus.com, Subject, Hello!); echo Sending mail...; echo /body/html; ? It is that simple! The PHP mail function h</description>
    <pubDate>2003-07-25</pubDate>
    <category>邮件处理</category>
    <author>未知</author>
    <comments>未知</comments>
</item>
<item>
    <title>NT下基于邮件服务软件(IMAIL)的邮件发送程序--(本地版)</title>
    <link>/html/edu/php/php12/6801.html</link>
    <description>有很多朋友为了PHP的MAIL函数而苦恼，其实关键就是它的SMTP服务的问题。现在常用的163、sina等大都不支持匿名发送邮件，就是说即使你把php.ini中的smtp设为smtp.163.net/smtp.sina.com.cn也会提示错误。怎么办呢？今日搞到了一个叫IMAIL的邮件服务软件，试了一试，居然</description>
    <pubDate>2003-07-25</pubDate>
    <category>邮件处理</category>
    <author>未知</author>
    <comments>未知</comments>
</item>
<item>
    <title>用PHP实现POP3邮件的解码（一）</title>
    <link>/html/edu/php/php12/6800.html</link>
    <description>初步认识邮件的源文件 （作者：陈俊清 2000年10月24日 15:08） 本文简要说明了通过POP3协议收取邮件、MIME邮件的解码的原理；针对收取和MIME解码，提供了两个实用的PHP类，并提供了使用的样例。分为邮件收 IME解码两个部分。我们已经向您介绍过了邮件的收取，现在让</description>
    <pubDate>2003-07-25</pubDate>
    <category>邮件处理</category>
    <author>未知</author>
    <comments>未知</comments>
</item>
<item>
    <title>用PHP实现POP3邮件的解码（三）</title>
    <link>/html/edu/php/php12/6799.html</link>
    <description>实现 MIME 解码的类 （作者：陈俊清 2000年10月24日 15:11） 一个实现 MIME 解码的类 该类实现解码的方法是 decode($head=null,$body=null,$content_num=-1),为了处理上的方便，要求输入的是两个字符数组，在我们的上篇中，所用到的POP类所收取得到的就是两个这样的数组</description>
    <pubDate>2003-07-25</pubDate>
    <category>邮件处理</category>
    <author>未知</author>
    <comments>未知</comments>
</item>
<item>
    <title>用PHP实现POP3邮件的解码（二）</title>
    <link>/html/edu/php/php12/6798.html</link>
    <description>MIME 编码方式简介 （作者：陈俊清 2000年10月24日 15:09） MIME 编码方式简介 Subject: =?gb2312?B?xOO6w6Oh?= 这里是邮件的主题，可是因为编码了，我们看不出是什么内容，其原来的文本是：“你好 蔽颐窍瓤纯 MIME 编码的两种方法。 对邮件进行编码最初的原因是因为</description>
    <pubDate>2003-07-25</pubDate>
    <category>邮件处理</category>
    <author>未知</author>
    <comments>未知</comments>
</item>
<item>
    <title>用PHP实现POP3邮件的收取（一）</title>
    <link>/html/edu/php/php12/6797.html</link>
    <description>POP协议简介 （作者：陈俊清 2000年10月18日 11:53） 本文简要说明了通过POP3协议收取邮件、MIME邮件的解码的原理；针对收取和MIME解码，提供了两个实用的PHP类，并提供了使用的样例。分为邮件收 IME解码两个部分。这里我们先向您介绍邮件的收取，解码部分会在以后的</description>
    <pubDate>2003-07-25</pubDate>
    <category>邮件处理</category>
    <author>未知</author>
    <comments>未知</comments>
</item>
<item>
    <title>发现一个发送mime邮件的类2</title>
    <link>/html/edu/php/php12/6808.html</link>
    <description>?php /* include mime_mail.inc; $filename= testfile.jpg; $content_type = image/jpeg; # 讀取磁碟裡的 JPEG 圖形 $fd = fopen($filename, r); $data = fread($fd, filesize($filename)); fclose($fd); # 建立物件實體 $mail = new mime_mail; # 設定所有項目 $mail-f</description>
    <pubDate>2003-07-25</pubDate>
    <category>邮件处理</category>
    <author>未知</author>
    <comments>未知</comments>
</item>
<item>
    <title>最好的邮件编码解码类，再没有比这个好的了！贴不下了(1)</title>
    <link>/html/edu/php/php12/6809.html</link>
    <description>? class mime_decode { var $content= Array(); function mime_encode_headers($string) { if($string == ) return; if(!eregi(^([[:print:]]*)$,$string)) $string = =?ISO-8859-1?Q?.str_replace(+,_,str_replace(%,=,urlencode($string))).?=; return $string; } fun</description>
    <pubDate>2003-07-25</pubDate>
    <category>邮件处理</category>
    <author>未知</author>
    <comments>未知</comments>
</item>
<item>
    <title>RFC1939-POP3协议中文版</title>
    <link>/html/edu/php/php12/6820.html</link>
    <description>1. 简介 对于在网络上的比较小的结点，支持消息传输系统（MTS）是不实际 的。例如，一台工作站可能不具有充足的资源允许SMTP服务器和相当的本地邮件传送系统保持序驻留，并持续运行。同样的，将一台个人计算机长时间连接在IP类型网络上的费用也是可观的（结点缺少的资源</description>
    <pubDate>2003-07-25</pubDate>
    <category>邮件处理</category>
    <author>未知</author>
    <comments>未知</comments>
</item>
<item>
    <title>RFC821-简单邮件传输协议（SMTP）中文版 - 0</title>
    <link>/html/edu/php/php12/6819.html</link>
    <description>本文出自: 作者: (2001-11-23 07:08:00) 1. 介绍 简单邮件传输协议（SMTP）的目标是可靠高效地传送邮件，它独立于传 送子系统而且仅要求一条可以保证传送数据单元顺序的通道。附录A，B，C 和D描述了不同传送服务下SMTP的使用。在名词表中还定义了本文档中使用 的术语。</description>
    <pubDate>2003-07-25</pubDate>
    <category>邮件处理</category>
    <author>未知</author>
    <comments>未知</comments>
</item>
<item>
    <title>RFC821-简单邮件传输协议（SMTP）中文版 - 1</title>
    <link>/html/edu/php/php12/6818.html</link>
    <description>3.7. 域 域是最近被引入ARPA Internet邮件系统的。使用域可以使地址空间从一 个平面的普通字符串主机名变成全局地址的一个层次结构。主机由一个域名取 代，起始主机是由一系列元串组成，它们由逗号按最特殊到一般的顺序排列。 例如，USC-ISIF.ARPA，Fred.Cambridge.UK和</description>
    <pubDate>2003-07-25</pubDate>
    <category>邮件处理</category>
    <author>未知</author>
    <comments>未知</comments>
</item>
<item>
    <title>发送mime邮件类</title>
    <link>/html/edu/php/php12/6817.html</link>
    <description>?php if(basename($PHP_SELF)== class.html_mime_mail.inc) { includefileinfo.inc; echopre 如果不含圖檔: \$mail = new html_mime_mail(); \$html =\HTML內容\; \$mail-add_html(\$html, \$text); \$mail-build_message(); \$mail-send(收信人,收信Email,發信人,發信E</description>
    <pubDate>2003-07-25</pubDate>
    <category>邮件处理</category>
    <author>未知</author>
    <comments>未知</comments>
</item>
<item>
    <title>发送mime邮件类--实例</title>
    <link>/html/edu/php/php12/6816.html</link>
    <description>如果不含圖檔: $mail = new html_mime_mail(); $html =HTML內容; $mail-add_html($html, $text); $mail-build_message(); $mail-send(收信人,收信Email,發信人,發信Email,標題,額外Header); -------------------------------------------------------------------------</description>
    <pubDate>2003-07-25</pubDate>
    <category>邮件处理</category>
    <author>未知</author>
    <comments>未知</comments>
</item>
<item>
    <title>用Socket发送电子邮件--续篇（不错的文章）（转自动力在线）</title>
    <link>/html/edu/php/php12/6814.html</link>
    <description>用Socket发送电子邮件--续篇 作者：limodou 在前面我曾经写过一篇文章，介绍了如何利用socket编程来发送邮件，以解决web服务器不支持mail()函数的问题。经过我的测试也是可以使用的。但目前众多的免费邮件提供商（从263开始，163，新浪网也快开始了）均在smtp功能上增加</description>
    <pubDate>2003-07-25</pubDate>
    <category>邮件处理</category>
    <author>未知</author>
    <comments>未知</comments>
</item>
<item>
    <title>用PHP读取IMAP邮件</title>
    <link>/html/edu/php/php12/6813.html</link>
    <description>//这个例子可以练习关于IMAP的函数 //但是如果真的要写WEBMAIL，那么要考虑的东西就不止这些了……孤狼 login.php3 ?php if (!$PHP_AUTH_USER) { Header(WWW-authenticate: basic realm=邮件客户检查); Header(HTTP/1.0 401 Unauthorized); } else { $MYDIR=ereg_replac</description>
    <pubDate>2003-07-25</pubDate>
    <category>邮件处理</category>
    <author>未知</author>
    <comments>未知</comments>
</item>
<item>
    <title>最好的邮件编码解码类，再没有比这个好的了！贴不下了(2)6</title>
    <link>/html/edu/php/php12/6812.html</link>
    <description>function build_text_body($body) { return \npre.$this-make_link_clickable($this-linesize(htmlspecialchars($body),85))./pre\n; } function decode_qp($text) { $text = quoted_printable_decode($text); /* $text = str_replace(\r,,$text); $text = ereg_replace</description>
    <pubDate>2003-07-25</pubDate>
    <category>邮件处理</category>
    <author>未知</author>
    <comments>未知</comments>
</item>
<item>
    <title>用PHP发电子邮件2</title>
    <link>/html/edu/php/php12/6811.html</link>
    <description>mail()函数是非常简单的:只有五个参数,而其中的两个是可选的.这些参数是: 接收方地址 主题 信件内容 其它文件信息头(可选) SMTP服务程序的其它配置选项(可选) 附加的头参数控制了诸如CC, BCC, Reply-To之类的邮件功能,或者其它遵循SMTP协议的功能.在这个例子中,我只使用</description>
    <pubDate>2003-07-25</pubDate>
    <category>邮件处理</category>
    <author>未知</author>
    <comments>未知</comments>
</item>
<item>
    <title>用PHP发电子邮件1,很简单？我也是这样认为的...</title>
    <link>/html/edu/php/php12/6810.html</link>
    <description>一个发送E-MAIL的脚本也许是你能够在Web 站点上找到的最普通的脚本之一了,虽然它很简单,一个邮件脚本有时会令程序员非常沮丧.PHP中有一个叫做mail()的函数,它只需要知道接收方的地址和信件主体就可以发送邮件,但是要让mail()按你的意思运行你还需要解决一些棘手的问题.</description>
    <pubDate>2003-07-25</pubDate>
    <category>邮件处理</category>
    <author>未知</author>
    <comments>未知</comments>
</item>
<item>
    <title>用PHP实现POP3邮件的收取（二）</title>
    <link>/html/edu/php/php12/6796.html</link>
    <description>用PHP实现POP3收取邮件的类 （作者：陈俊清 2000年10月18日 11:56） 现在让我们来用PHP实现一个通过POP3协议收取信件的类吧，这个类中所用到的一些sock操作的函数，不另做特殊说明，请参考php的有关资料。通过这个实例，相信你也会和我一样，感觉到PHP中对于sock操作的</description>
    <pubDate>2003-07-25</pubDate>
    <category>邮件处理</category>
    <author>未知</author>
    <comments>未知</comments>
</item>

</channel>
</rss>
