Send Mail C#

Note About Generate and Send Email automatically.

  1. Toolset support:
    .Net support a Interop Call to outlook, detail refer link, MailItem.

  2. What we can do with this?
    Generate the Draft Email includeing To,CC,Subject,body,Attachment. We can also listen to the outlook operation, that is Send or Close. refer

  3. code snippet.

public static Microsoft.Office.Interop.Outlook.MailItem mail = null;

mail = new Microsoft.Office.Interop.Outlook
        .Application()
        .CreateItem(Microsoft.Office.Interop.Outlook.OlItemType.olMailItem)
        as Microsoft.Office.Interop.Outlook.MailItem;
        mail.To = (EmailInfo.EmailRecipients ?? string.Empty).Replace(",", ";");
        mail.CC = string.IsNullOrWhiteSpace(emailCCTo) ? "" : emailCCTo.Replace(",", ";");
        mail.Subject = EmailInfo.EmailSubject;
        if (EmailInfo.FilePath != null && EmailInfo.FilePath != "")
        {
            foreach (var each in EmailInfo.FilePath.Split(';'))
            {
                mail.Attachments.Add(each);
            }
        }
        mail.Display(mail);
        mail.HTMLBody = isDefaultSignature ?
                        (EmailInfo.EmailBody + mail.HTMLBody) :
                        EmailInfo.EmailBody;
        ((Microsoft.Office.Interop.Outlook.ItemEvents_10_Event)mail).Send +=
              new Microsoft.Office.Interop.Outlook.ItemEvents_10_SendEventHandler(isSent_Handle);
                       
posted @ 2017-08-24 17:04  kongshu  阅读(197)  评论(0编辑  收藏  举报