C# Windows Service調用IBM Lotus Notes發送郵件

来源:http://www.cnblogs.com/chuliam/archive/2016/02/02/lotusMail.html
-Advertisement-
Play Games

近日研究了下IBM Lotus Mail,這貨果然是麻煩,由於公司策略,沒有開放smtp,很多系統郵件都沒有辦法發送,於是入手google學習Lotus Mail,想做成Windows服務,提供wcf服務給內部應用系統使用。在google上找了很多資料,由於是系統郵件,很多東西配置起來又比較麻煩。自


近日研究了下IBM Lotus Mail,這貨果然是麻煩,由於公司策略,沒有開放smtp,很多系統郵件都沒有辦法發送,於是入手google學習Lotus Mail,想做成Windows服務,提供wcf服務給內部應用系統使用。在google上找了很多資料,由於是系統郵件,很多東西配置起來又比較麻煩。自己也入了很多坑,特此作為記錄。廢話不多說,下麵開始...

伺服器環境:Windows Server 2008R2+Lotus Notes 8.5中文版

特別註意:Lotus Notes 8.5中文版需要配置好賬戶密碼,但是不需要打開它。

本地環境:Lotus Notes 8.5中文版+Visual Studio 2013

~~~~~~~~~~~~~~~~~~~~~~~我是優雅的分隔符~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

1,打開VS,新建類庫項目LotusMailHelper,添加Lotus Domino Objects引用:

添加完之後VS會自動編譯成dll

2,添加類Mail.cs,添加郵件發送方法SendMail

/// <summary>

/// 發送郵件

/// </summary>

/// <param name="sendTo"></param>

/// <param name="subject"></param>

/// <param name="messageBody"></param>

public bool SendMail(string[] sendTo, string subject, string messageBody)

3,在Mail.cs添加Using:using Domino;

4,編寫SendMail的邏輯

Domino.NotesSession nSession = new Domino.NotesSession();
string pwd = System.Configuration.ConfigurationManager.AppSettings["LotusMailPassword"];//lotus郵箱密碼
string server = System.Configuration.ConfigurationManager.AppSettings["LotusMailServer"];//lotus郵箱伺服器地址
string serverPath = System.Configuration.ConfigurationManager.AppSettings["LotusMailServerPath"];//存儲nsf文件的路徑
string saveMessageOnSend = System.Configuration.ConfigurationManager.AppSettings["SaveMessageOnSend"];//發送前是否保存
nSession.Initialize(pwd);//初始化郵件
Domino.NotesDatabase nDatabase =
nSession.GetDatabase(server, serverPath, false);
Domino.NotesDocument nDocument = nDatabase.CreateDocument();
nDocument.ReplaceItemValue("SentTo", sendTo);//收件人,數據:數組
nDocument.ReplaceItemValue("Subject", subject);//主題
if (saveMessageOnSend == "1")//為1時保存到lotus的發件箱
{
    nDocument.SaveMessageOnSend = true;
}
else
{
    nDocument.SaveMessageOnSend = false;//設置保存與否
}
NotesStream HtmlBody = nSession.CreateStream();
HtmlBody.WriteText(messageBody);//構建HTML郵件,可以在頭和尾添加公司的logo和系統提醒語
NotesMIMEEntity mine = nDocument.CreateMIMEEntity("Body");//構建郵件正文
mine.SetContentFromText(HtmlBody, "text/html;charset=UTF-8", Domino.MIME_ENCODING.ENC_IDENTITY_BINARY);
nDocument.AppendItemValue("Principal", "XXX管理員");//設置郵件的發件人昵稱
nDocument.Send(false, sendTo); //發送郵件
nDocument.CloseMIMEEntities();//關閉

由於最後會封裝為dll,最好是添加try...catch...,加以優化,下麵為優化過後:

/// <summary>
/// 發送lotus郵件(需要在web.config或者app.config中添加以下節點
///<appSettings>
/// <!--郵箱密碼-->
///<add key="LotusMailPassword" value="" />
/// <!--郵件服務器地址-->
///<add key="LotusMailServer" value="" />
/// <!--郵件數據庫路徑-->
///<add key="LotusMailServerPath" value="" />
/// <!--是否保存到發件箱(0不保存,1保存,其他值皆為不保存)-->
///<add key="SaveMessageOnSend" value="0" />
///</appSettings>
/// </summary>
/// <param name="sendTo">數組,收件人</param>
/// <param name="subject">主題</param>
/// <param name="messageBody">正文html</param>
/// <returns></returns>
public bool SendMail(string[] sendTo, string subject, string messageBody)
{
    try
    {
        Domino.NotesSession nSession = new Domino.NotesSession();
        string pwd = System.Configuration.ConfigurationManager.AppSettings["LotusMailPassword"];//lotus郵箱密碼
        string server = System.Configuration.ConfigurationManager.AppSettings["LotusMailServer"];//lotus郵箱伺服器地址
        string serverPath = System.Configuration.ConfigurationManager.AppSettings["LotusMailServerPath"];//存儲nsf文件的路徑
        string saveMessageOnSend = System.Configuration.ConfigurationManager.AppSettings["SaveMessageOnSend"];//發送前是否保存
        nSession.Initialize(pwd);//初始化郵件
        Domino.NotesDatabase nDatabase =
        nSession.GetDatabase(server, serverPath, false);
        Domino.NotesDocument nDocument = nDatabase.CreateDocument();
        nDocument.ReplaceItemValue("SentTo", sendTo);//收件人,數據:數組
        nDocument.ReplaceItemValue("Subject", subject);//主題
        if (saveMessageOnSend == "1")//為1時保存到lotus的發件箱
        {
            nDocument.SaveMessageOnSend = true;
        }
        else
        {
            nDocument.SaveMessageOnSend = false;//設置保存與否
        }
        NotesStream HtmlBody = nSession.CreateStream();
        HtmlBody.WriteText(messageBody);//構建HTML郵件,可以在頭和尾添加公司的logo和系統提醒語
        NotesMIMEEntity mine = nDocument.CreateMIMEEntity("Body");//構建郵件正文
        mine.SetContentFromText(HtmlBody, "text/html;charset=UTF-8", Domino.MIME_ENCODING.ENC_IDENTITY_BINARY);
        nDocument.AppendItemValue("Principal", "XXX管理員");//設置郵件的發件人昵稱
        nDocument.Send(false, sendTo); //發送郵件
        nDocument.CloseMIMEEntities();//關閉
        return true;//已經提交到lotus,返回true
    }
    catch
    {
        return false;//提交失敗
    }
}

5,點擊項目生成,找到Bin文件夾中的dll,保存到自己喜歡的文件夾,方便後期的調用

============我是更加優美的分隔符=============

下麵一起來建立Windows service

1,打開VS,新建Windows服務項目

 名字隨便取。。。新建完成之後會自動生成Service1.cs,打開Service1.cs代碼看看,主要分為以下幾個方法:

public partial class Service1 : ServiceBase
{
    public Service1()
    {
        InitializeComponent();
    }
    
    protected override void OnStart(string[] args)
    {
    }
    
    protected override void OnStop()
    {
    }
}
OnStart:主要是寫入要啟動的邏輯代碼
OnStop:主要寫的是停止服務時要執行的方法,也就是邏輯代碼,我一般會將日誌寫在這

2,將service1.cs刪除,新建一個Windows服務,並命名成公司要求的。例如我的是MailService.cs。

3,新建一個處理郵件的方法:

public void SendMail()
{
    while(true)
    {
        //這裡寫郵件數據獲取以及發送郵件
        Thread.Sleep(100);
    }   
}

4,構建郵件model:在解決方案點擊滑鼠右鍵添加新建項目,選擇類庫項目,MailModel,新建MailInfo.cs

public class MailInfo
{
    public string mailId { get; set; }
    public string[] sendTo { get; set; }
    public string subject { get; set; }
    public string mailBody { get; set; }
}

5,新建類庫DbHelper,添加類Mail.cs,在裡面寫GetMailData()方法,RemoveMailData(),GetMailCount(),InsertMailData()等方法,這裡由於涉及到公司的信息,不是很方便寫出來。大家可以自行添加進去

public MailModel.MailInfo GetMailData()
{
    //這裡寫獲取郵件數據
    return MailInfo;//返回資料庫第一封待發郵件數據
}
public void RemoveMailData(string mailId)
{
    //刪除資料庫中指定id的郵件數據
}
public long GetMailCount()
{
    //這裡寫獲取郵件數量
    return 郵件數量
}
public bool InsertMailData()
{
    //這裡寫插入一封郵件數據
    return true;
}

6,新建類庫WCF項目,添加wcf,名字為SendMail

添加完成之後VS會自動生成ISendMail.cs和SendMail.cs。打開ISendMail.cs會看到如下代碼

// 註意: 使用“重構”菜單上的“重命名”命令,可以同時更改代碼和配置文件中的介面名“ISendMail”。
[ServiceContract]
public interface ISendMail
{
    [OperationContract]
    void DoWork();
}

裡面只有一個DoWork方法,我們新建一個ApplySendMail();註意:在頂上要添加[OperationContract]否則不會公開該函數。最後的ISendMail.cs代碼如下

[ServiceContract]
public interface ISendMail
{
    [OperationContract]
    string ApplySendMail(string[] sendTo, string subject, string body, string password);
}

接著打開SendMail.cs,去實現介面的ApplySendMail()方法

public class SendMail : ISendMail
{
    public string ApplySendMail(string[] sendTo, string subject, string body, string password)
    {
        string result = string.Empty;
        string mailPassword = System.Configuration.ConfigurationManager.AppSettings["password"];
        if (mailPassword == password)
        {
            try
            {
                MailModel.MailInfo mail = new MailModel.MailInfo
                {
                    sendTo = sendTo,
                    subject = subject,
                    mailBody = body
                };
                long count = DbHelper.Mail.GetMailCount();
                if (DbHelper.Mail.InsertMailData(mail))
                {
                    result = string.Format("提交成功.前面大約還有:{0}個任務", count);
                }
                return result;
            }
            catch
            {
                return "提交失敗";
            }
        }
        else
        {
            return "密碼錯誤,無法提交";
        }
    }
}

至此wcf基礎已經可以了,下麵繼續完成Windows服務那一塊

7,完成處理郵件的方法SendMail(),這裡要添加之前寫好的LoutusMailHelper.dll

public void SendMail()
{
    while(true)
    {
        var mailData=DbHelper.Mail.GetMailData();
        if(mailData!=null)
        {
            if(LotusMailHelper.Mail.SendMail(mailData.sendTo,mailData.subject,mailData.mailBody))
            {
                DbHelper.Mail.RemoveMailData(mailData.mailId);
            }
            Thread.Sleep(100);//休息0.1秒
        }
        else
        {
            Thread.Sleep(10000);//休息10秒鐘
        }       
    }   
}

8,完成OnStart()邏輯:①,先添加私有成員到MailService.cs

partial class MailService : ServiceBase
{
    public MailService()
    {
        InitializeComponent();
    }
    private System.ServiceModel.ServiceHost _host;
    
    /*
    此處省略部分代碼
    */
}

②,編寫OnStart()代碼

protected override void OnStart(string[] args)
{
    _host = new System.ServiceModel.ServiceHost(typeof(WCF.Mail));
    _host.Open();
    //啟動wcf服務
    
    //啟動一個線程專門輪詢發送郵件
    Thread sendMail = new Thread(new ThreadStart(SendMail));
    sendMail.IsBackground = true;
    sendMail.Start();
}

9,編寫OnStop()代碼,添加日誌記錄代碼

10,配置App.config,wcf一定要配置。先看App.config中是否存在system.serviceModel節點,存在的話只需修改部分欄位即可,不存在的話添加如下:

<system.serviceModel>
    <behaviors>
      <serviceBehaviors>
        <behavior name="">
          <serviceMetadata httpGetEnabled="true" httpsGetEnabled="true" />
          <serviceDebug includeExceptionDetailInFaults="false" />
        </behavior>
      </serviceBehaviors>
    </behaviors>
    <services>
      <service name="WCF.Mail">
        <endpoint address="" binding="basicHttpBinding" contract="WCF.IMail">
          <identity>
            <dns value="localhost" />
          </identity>
        </endpoint>
        <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
        <!--wcf節點配置開始-->
        <host>
          <baseAddresses>
            <add baseAddress="http://localhost:8733/MailService/Mail/" />
          </baseAddresses>
        </host>
        <!--wcf節點配置結束-->
      </service>
    </services>
  </system.serviceModel>

~~至此,基本的都已經完成,下麵到Windows service部署

1,打開MailService.cs視圖界面,添加安裝程式。會自動出現如下界面:

選中serviceProcessInstaller1組件,查看屬性,設置account為LocalSystem

選中serviceInstaller1組件,查看屬性

設置ServiceName的值, 該值表示在系統服務中的名稱

設置StartType, 如果為Manual則手動啟動,預設停止,如果為Automatic為自動啟動

設置Description,添加服務描述

2,重新生成項目

3,打開Windows的cmd,輸入C:\Windows\Microsoft.NET\Framework\v4.0.30319\InstallUtil.exe exe路徑

等待安裝。安裝完畢之後打開電腦管理,查看服務,點擊啟動。

***刪除服務:sc delete 服務名

 

至此,所有步驟都完成了,可以暢快的調用wcf來發送系統郵件了

<<<<<<<<<<<<<由於本人水平有限,可能存在很多錯誤,請諒解與批評指正>>>>>>>>>>>>>>

 

 百度經驗 : C#創建Windows服務與安裝-圖解

 

推薦資料庫使用nosql資料庫,redis或者mongodb,在接下里的隨筆里我會記錄mongdb和redis的使用過程。。。第一次發文,緊張死寶寶了

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 過於笨重的網站將嚴重影響網站的最終體驗,主要表現在以下四個方面: 更大的下載量,導致更慢的用戶體驗。並不是每個人都擁有20M的網路連接,尤其是對於那些不發達地區。不管你的網站多麼優秀,用戶永遠不希望等待。 移動Web訪問正迅速發展,移動網民幾乎占到所有網民的1/4。在典型的3G網路連接下,一個1.7
  • 如果有個操作,我們需要過一會兒再做,或者每隔一段時間就要做一次。可以有很多種做法。 獨立線程 是的,對.NET Framework本身一知半解的程式員才會使用這種方案。不過,現實中這個方案其實並不少見。 public static void Repeat(this Action action, Ti
  • 面向對象編程一個好處就是“代碼重用”,極大提高了開發效率。如是,可以派生出一個類,讓它繼承基類的所有能力,派生類只需要重寫虛方法,或添加一些新的方法,就可以定製派生類的行為,使之滿足開發人員的需求。 泛型(generic)是CLR和編程語言提供的一種特殊機制,它支持另一種形式的代碼重用,即“演算法重用
  • 類的以下特性中,可以用於方便地重用已有的代碼和數據的是( ). A.多態B.封裝C.繼承D.抽象 答案:http://hovertree.com/tiku/bjaf/a3k6pgq5.htm 可用作C#程式用戶標識符的一組標識符是( )。 A. void define +WORDB. a3_b3 _
  • 直接上代碼: 1 <html> 2 <head> 3 <meta name="viewport" content="width=device-width" /> 4 <script src="~/Scripts/jquery-1.8.2.js"></script> 5 <script> 6 func
  • 註:本文是ASP.NET Identity系列教程的第一篇。本系列教程詳細、完整、深入地介紹了微軟的ASP.NET Identity技術,描述瞭如何運用ASP.NET Identity實現應用程式的用戶管理,以及實現應用程式的認證與授權等相關技術,譯者希望本系列教程成為掌握ASP.NET Ident...
  • 1、為什麼使用對象初始化器 C#3.0提供了對象初始化器,為了方便在初始化時程式員自己來控制需要初始化的屬性,而不需要在初始化時當屬性不同時修改或新增構造函數 2、如何使用對象初始化器 類定義如下 public class Person { private string name; public s
  • 介紹了微軟企業庫之數據訪問模塊的基本使用。
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...