コード例 #1
0
ファイル: MOSSServiceManager.cs プロジェクト: vijaymca/Dotnet
 /// <summary>
 /// Sends the feed back mail.
 /// </summary>
 /// <param name="header">The header.</param>
 /// <param name="messageBody">The message body.</param>
 public void SendFeedBackMail(StringDictionary header, string messageBody)
 {
     FeedbackHandler objFeedBack = null;
     try
     {
         objFeedBack = new FeedbackHandler();
         objFeedBack.SendAlertMail(header, messageBody);
     }
     catch(Exception)
     {
         throw;
     }
 }