程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> .NET實例教程 >> ASP.Net環境下使用Jmail組件發送郵件

ASP.Net環境下使用Jmail組件發送郵件

編輯:.NET實例教程

配置環境:.Net Framework 1.1,Imai8.02,w3Jmail4.3

實現過程:

不同於在ASP中使用Jmail,直接使用 Server.CreateObject("Jmail.Message")就可以了。在.Net環境中,需要進行設置。

1.安裝jmail4.3

2.找到jmail.dll(Program Files\DiMac\w3JMail4下)

3.執行Program Files\Microsoft Visual Studio .NET\FrameworkSDK\Bin\ildasm.exe(可使用Visual Studio .Net 2003 命令提示),

格式如下:tlbimp c:\Program Files\DiMac\w3JMail4\jmail.dll /out:myJmail.dll /namespace:myJmail

生成myJmail.dll後,copy到web的根目錄的bin目錄。在ASP.Net頁面中,用這個方法引用:

Jmail.ASPx

<%@ Page Language="C#" ContentType="text/Html"%>

<%@ Import Namespace="myJmail" %>

<script runat="server">

protected void Page_Load(Object Src, EventArgs E)

{

 

Message jmail=new Message();

jmail.From="sss";

jmail.AddRecipIEnt("[email protected]",null,null);

jmail.MailServerUserName="brookes";

jmail.MailServerPassWord="walkor";

jmail.Subject="jmail c#";

jmail.Send("mail.lsg.com",false);

</script>

 

Tlbimp:

Microsoft .Net Framework Type Library to Assembly Converter

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved