国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > .NET > 正文

ASP.NET結(jié)合COM組件發(fā)送Email

2024-07-10 12:59:01
字體:
供稿:網(wǎng)友
在系統(tǒng)目錄(如c:/winnt或c:/windows)的system32子目錄中可以找到一個(gè)名稱為cdosys.dll的文件,我們可以通過asp.net調(diào)用此com組件來實(shí)現(xiàn)email的發(fā)送。cdosys構(gòu)建在smtp協(xié)議和nntp協(xié)議之上,并且作為windows2000 server的組件被安裝,當(dāng)然我們也可以使用exchange2000中cdoex.dll來實(shí)現(xiàn)發(fā)送郵件的機(jī)制,由于cdosys.dll內(nèi)嵌到了操作系統(tǒng)中,所以不用再去注冊(cè)相應(yīng)的其他郵件發(fā)送程序比如jmail等。

  1、新建一個(gè)項(xiàng)目文件

  2、添加引用系統(tǒng)目錄下的cdosys.dll文件,在引用中會(huì)發(fā)現(xiàn)添加了兩個(gè)要用到的接口:cdo,adodb

  3、添加新項(xiàng)文件sendmail.aspx,在其頁面上放置三個(gè)label,三個(gè)textbox,作用分別為收件人地址、主題、內(nèi)容,放置一個(gè)button按鈕。

  4、切換到代碼頁,創(chuàng)建一下內(nèi)容

public void cdosendmail()
{
 try
 {
  cdo.message msg = new cdo.message();
  msg.from = "[email protected]";
  msg.to = this.textbox1.text.trim();
  msg.subject = this.textbox2.text.trim();
  msg.htmlbody = "<html><body>"+this.textbox3.text+"</body></html>";
  cdo.iconfiguration config = msg.configuration;
  adodb.fields ofields = config.fields;
  ofields["http://schemas.microsoft.com/cdo/configuration/sendusing"].value = 2;
 ofields["http://schemas.microsoft.com/cdo/configuration/sendusername"].value="rattlesnake";
 ofields["http://schemas.microsoft.com/cdo/configuration/sendpassword"].value="pass";
 ofields["http://schemas.microsoft.com/cdo/configuration/smtpauthenticate"].value=1;
 ofields["http://schemas.microsoft.com/cdo/configuration/languagecode"].value=0x0804;
 ofields["http://schemas.microsoft.com/cdo/configuration/smtpserver"].value="smtp.263.net";
 ofields.update();

  msg.bodypart.charset = "gb2312";
  msg.htmlbodypart.charset = "gb2312";
 
  msg.send();
  msg = null;
 }
 catch(exception err)
 {
  throw err;
 }
}

  5、為button添加click事件

private void button1_click(object sender, system.eventargs e)
{
this.cdosendmail();
}

  運(yùn)行程序即可。


國內(nèi)最大的酷站演示中心!
發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 临夏市| 舞阳县| 吉木萨尔县| 瑞昌市| 安远县| 安达市| 敖汉旗| 新乐市| 临澧县| 杭锦后旗| 永城市| 科技| 天门市| 托克托县| 苍南县| 武陟县| 泗阳县| 来宾市| 兴化市| 鄂伦春自治旗| 淄博市| 揭阳市| 稷山县| 体育| 胶南市| 志丹县| 连南| 垫江县| 北辰区| 都匀市| 津市市| 岗巴县| 临清市| 伊通| 抚顺县| 寿阳县| 板桥市| 绿春县| 股票| 罗甸县| 玛多县|