明永成

导航

 

 

Hi,

 

http://social.msdn.microsoft.com/Forums/zh-TW/6c063b27-7e8a-4963-ad5f-ce7e5ffb2c64/how-to-embed-image-in-html-body-in-c-into-outlook-mail

If you make add-in for Outlook 2007 or higher try to add the following code before newMail.Send():

   Attachment attachment = newMail.Attachments.Add(
     @"E:\Pictures\image001.jpg"
    , OlAttachmentType.olEmbeddeditem
    , null
    , "Some image display name"
    );

   string imageCid = "image001.jpg@123";

   attachment.PropertyAccessor.SetProperty(
     "http://schemas.microsoft.com/mapi/proptag/0x3712001E"
    , imageCid
    );

   newMail.HTMLBody = String.Format(
     "<body><img src=\"cid:{0}\"></body>"
    , imageCid
    );

Of course you can insert the tag "img" in the existing html body instead of override it like in my example.

 

posted on 2013-12-18 13:49  明永成  阅读(224)  评论(0编辑  收藏  举报