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

用C#(ASP.Net)在Exchange Server環境下發送郵件

編輯:C#入門知識

普通的郵件, 用System.Net.Mail 類 或 System.Web.Mail 類 處理即可, 但是Exchange Server 環境下, 這兩個類起不了作用-------至少目前我看到的情況如此.
整個過程如下:
1. 先添加COM 引用 "Microsoft CDO for Windows 2000 Library" .
2. 發送郵件的代碼:
 
 CDO.Message msg = new CDO.Message();
 
         string passWord="passWord";
 
         string from = "[email protected]";
 
         string server = "192.168.0.0";
 
 
         msg.From = from;
         msg.To = from;
         msg.Subject = "test mail";
         msg.TextBody = "test.";
 
 
 
         CDO.IConfiguration iConfig = msg.Configuration;
 
         ADODB.Fields fields = iConfig.Fields;
 
 
 
         fields["http://schemas.microsoft.com/cdo/configuration/sendusing"].Value = 2;
 
         fields["http://schemas.microsoft.com/cdo/configuration/sendemailaddress"].Value = from;
 
         fields["http://schemas.microsoft.com/cdo/configuration/sendpassword"].Value = passWord;
 
         fields["http://schemas.microsoft.com/cdo/configuration/smtpauthenticate"].Value = 1;
 
         fields["http://schemas.microsoft.com/cdo/configuration/smtpserver"].Value = server;
 
 
 
         fields.Update();
 
 
 
         try
 
          {
 
             msg.Send();
 
             msg = null;
 
         }
 
         catch (Exception ex)
 
          {
 
             throw;
 
         }
 
 
 
其中, fields的這五個屬性是它所有可選屬性的最緊的一個子集, 即,這五個屬性是缺一不可的, 其它的屬性還有:
http://schemas.microsoft.com/cdo/configuration/smtpaccountname
http://schemas.microsoft.com/cdo/configuration/smtpuserreplyemailaddress
http://schemas.microsoft.com/cdo/configuration/sendusername
等.
 
奇怪的是, msg 本身也有fields 屬性, 或者如同程序中引用的: msg.Configuration.Fields, 但是如果不用上述程序中的方法, 而是直接引用 msg的Fields 或 msg.Configuration.Fields 屬性, 則不能成功發送郵件, (沒有錯誤或異常, 但是收不到郵件) 為什麼會這樣, 有點費解.
fields 的smtpauthenticate 屬性的取值也是挺有意思的, 當它取0時, 代表無需驗證, 1代表基本的驗證, 2是NTLM驗證, 可是我在Outlook裡把驗證方式設為NTLM, 而在這裡把值取為1, 一樣能夠發送成功, 呵呵, 看來一般情況下取1 都是可以的了.
sendUsing 取2 的意思是, 強制通過smtpServer 屬性指定的server 發送郵件, 所以只要server屬性設置好, sendUsing取2 基本就是通用值了.
server屬性設為exchange server 的IP 地址即可.

 

摘自 作者:夏狼哉
 

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