<?xml version="1.0" encoding="gb2312"?>
<rss version="2.0">
<channel>
<title>E-mail专题</title>
<link>/html/edu/net/net11/index.html</link>
<description>编程开发 / ASP.NET / E-mail专题</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>在.NET 应用程序中用System.Web.Mail 发送电子邮件</title>
    <link>/html/edu/net/net11/3475.html</link>
    <description>作者：Mark Strawmyer 日期：February 9, 2004 欢迎来到 .NET Nuts Bolts 栏目。在这个栏目中，我们将探讨怎样在应用中发送电子邮件。这将用到System.Web.Mail 名字空间中的类。 协作数据对象 Windows 2000 协作数据对象 (CDOSYS) 是微软用来创建和发送基于标准的电子</description>
    <pubDate>2005-10-21</pubDate>
    <category>E-mail专题</category>
    <author>未知</author>
    <comments>搜站长搜集</comments>
</item>
<item>
    <title>一个发邮件的例子,涉及MSMQ,RSA,JMAIL</title>
    <link>/html/edu/net/net11/3481.html</link>
    <description>1.先生成公钥密钥 RSACryptoServiceProvider crypt=new RSACryptoServiceProvider(); string publickey=crypt.ToXmlString(false);//（公钥） string privatekey=crypt.ToXmlString(true); crypt.Clear(); StreamWriter one=new StreamWriter(@&quot;c:\a.txt&quot;,true,UTF8Enc</description>
    <pubDate>2005-10-21</pubDate>
    <category>E-mail专题</category>
    <author>未知</author>
    <comments>搜站长搜集</comments>
</item>
<item>
    <title>一段VB.NET代码,生成邮件,发送邮件,支持SMTP验证用户名密码.</title>
    <link>/html/edu/net/net11/3480.html</link>
    <description>可以生成邮件,可以发送邮件,稍做修改就可以写成一个com组件,在ASP里调用. 以后我会整理成一个完整的. -------------------------------------------------------------------------------- '------------------------------------------------- '生成基本邮件格式（包括</description>
    <pubDate>2005-10-21</pubDate>
    <category>E-mail专题</category>
    <author>未知</author>
    <comments>搜站长搜集</comments>
</item>
<item>
    <title>改进了的一个邮件发送类</title>
    <link>/html/edu/net/net11/3479.html</link>
    <description>/****************************************************** FileName: Copyright (c) 2003-xxxx *********公司技术开发部 Writer: create Date:2004-12-20 Rewriter: Rewrite Date: Impact: Main Content:（Function Name、parameters、returns） 支持ESMTP, 多附件 ***</description>
    <pubDate>2005-10-21</pubDate>
    <category>E-mail专题</category>
    <author>未知</author>
    <comments>搜站长搜集</comments>
</item>
<item>
    <title>通过Emit实现动态类生成</title>
    <link>/html/edu/net/net11/3478.html</link>
    <description>动态生成一个类对于AOP，O/R Mapping等技术非常有帮助。对于Java来说，问题不大，而对于.NET，则要麻烦些（主要麻烦在于实现代码的生成需要IL），故猜测这可能也是在AOP, O/R Mapping方面，Java走得略前的原因吧。 麻烦归麻烦，非不能也，动态生成一个简单的类还不至于</description>
    <pubDate>2005-10-21</pubDate>
    <category>E-mail专题</category>
    <author>未知</author>
    <comments>搜站长搜集</comments>
</item>
<item>
    <title>在Web上利用System.Web.Mail发送EMail</title>
    <link>/html/edu/net/net11/3477.html</link>
    <description>这是个vb.net的例子~ Email.aspx %@ Page Language=&quot;vb&quot; AutoEventWireup=&quot;false&quot; Codebehind=&quot;Email.aspx.vb&quot; Inherits=&quot;asif.SendEmail&quot;% !DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0 Transitional//EN&quot; HTML HEAD titleSendEmail/title meta name=&quot;vs_showGrid&quot; con</description>
    <pubDate>2005-10-21</pubDate>
    <category>E-mail专题</category>
    <author>未知</author>
    <comments>搜站长搜集</comments>
</item>
<item>
    <title>使用System.Web.Mail通过需验证的邮件服务器发送邮件</title>
    <link>/html/edu/net/net11/3476.html</link>
    <description>使用System.Web.Mail通过需验证的邮件服务器发送邮件,下面是Scott Water在dotText中写的一个发邮件的类，使用起来比较方便，整个类的代码如下： using System; using System.Web.Mail; namespace ZZ { /// /// SystemMail 的摘要说明。 /// public class SystemMail { p</description>
    <pubDate>2005-10-21</pubDate>
    <category>E-mail专题</category>
    <author>未知</author>
    <comments>搜站长搜集</comments>
</item>
<item>
    <title>Email发送完全手册</title>
    <link>/html/edu/net/net11/3482.html</link>
    <description>1.用asp+发送简单的Mail % @Page Language=&quot;C#&quot; % % @Import Namespace=&quot;System.Web.Util&quot; % % string strTo = &quot;asp888@asp888.net&quot;; string strFrom = &quot;webmaster@asp888.net&quot;; string strSubject = &quot;asp发送mail简单例子&quot;; SmtpMail.Send(strFrom, strTo, strSubject,</description>
    <pubDate>2005-10-21</pubDate>
    <category>E-mail专题</category>
    <author>未知</author>
    <comments>搜站长搜集</comments>
</item>
<item>
    <title>asp.net中使用JMail发邮件(无图版)</title>
    <link>/html/edu/net/net11/3062.html</link>
    <description>现在的邮件发送大多数需要STMP的身份验证， .NET里面的 System.Web.Util System.Web.Mail 就不可以了. 先要去找一个组件,名字叫 JMail 大家可以去网上找一下,下载下来安装上. 将jmail.dll引用到工程中 private void Button1_Click(object sender, System.EventArgs e) {</description>
    <pubDate>2005-09-28</pubDate>
    <category>E-mail专题</category>
    <author>未知</author>
    <comments>搜站长搜集</comments>
</item>
<item>
    <title>asp.net中使用JMail发邮件</title>
    <link>/html/edu/net/net11/3061.html</link>
    <description>现在的邮件发送大多数需要STMP的身份验证， .NET里面的 System.Web.Util System.Web.Mail 就不可以了. 我写这篇文章是希望对大家开发项目有所帮助，高手见笑了 先要去找一个组件,名字叫 JMail 大家可以去网上找一下,下载下来安装上. 将jmail.dll引用到工程中 图1: priv</description>
    <pubDate>2005-09-28</pubDate>
    <category>E-mail专题</category>
    <author>Matrix</author>
    <comments>cnblogs</comments>
</item>

</channel>
</rss>
