国产探花免费观看_亚洲丰满少妇自慰呻吟_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ā)表
主站蜘蛛池模板: 盐亭县| 西宁市| 大名县| 牙克石市| 龙井市| 金平| 二手房| 金山区| 滨州市| 定结县| 合山市| 双柏县| 理塘县| 东港市| 磴口县| 准格尔旗| 和硕县| 潜江市| 沛县| 四川省| 方山县| 轮台县| 新宾| 武邑县| 沁源县| 蓝田县| 视频| 和静县| 读书| 鄯善县| 绥化市| 蒙城县| 万载县| 兴山县| 仙游县| 阿荣旗| 平度市| 五华县| 穆棱市| 宜君县| 栖霞市|