WebHosting

Tuesday, October 18, 2011

Specify Different Recipient Types for a Mail Item,Add custom fields in outlook mail

//namespace (add Microsoft.Office.Interop.Outlook.dll

using Outlook = Microsoft.Office.Interop.Outlook;
//code
private void setCustomFieldsInOutlookMail()
{
    Outlook.MailItem mail = Application.CreateItem(
        Outlook.OlItemType.olMailItem) as Outlook.MailItem;
    mail.Subject = "This is custom message created";
    Outlook.Recipient recipTo =
        mail.Recipients.Add("toAddress@something.com");
    recipTo.Type = (int)Outlook.OlMailRecipientType.olTo;
    Outlook.Recipient recipCc =
        mail.Recipients.Add("ccAddress@something.com");
    recipCc.Type = (int)Outlook.OlMailRecipientType.olCC;
    Outlook.Recipient recipBcc =
        mail.Recipients.Add("bccAddress@example.com");
    recipBcc.Type = (int)Outlook.OlMailRecipientType.olBCC;
    mail.Recipients.ResolveAll();
    mail.Display(false);
}

No comments:

Post a Comment

Thank you for Commenting Will reply soon ......

Featured Posts

How to Enable and Configure Remote Desktop (RDP) on Ubuntu 24.04.4 LTS

Remote Desktop Protocol (RDP) support in Ubuntu has become considerably easier with the GNOME Remote Desktop stack included in modern Ubuntu...