Outlook Banter

Outlook Banter (http://www.outlookbanter.com/)
-   Add-ins for Outlook (http://www.outlookbanter.com/add-ins-outlook/)
-   -   html content of mail (http://www.outlookbanter.com/add-ins-outlook/90711-html-content-mail.html)

Ashish May 22nd 09 09:28 AM

html content of mail
 
If i mail contains embeded image and we open that mail in outlook addin then
embeded image does not display in body of mail It's in Attachments pane.
To display embeded image in mail body(not in attachments pane) which
property we need to set?



Ken Slovak - [MVP - Outlook] May 22nd 09 02:17 PM

html content of mail
 
In general an embedded image will always be an attachment, unless it's a
direct URL link to an image file located somewhere. The HTML reference will
look something like this:

IMG src="cid:124260513@22052009-2198"

where that cid will match the PR_ATTACH_CONTENT_ID (0x3712001E or
"urn:schemas:mailheader:content-id") property value. The PR_ATTACH_DATA_BIN
property (0x37010102 or
"http://schemas.microsoft.com/mapi/proptag/0x37010102") will contain the
binary content of the image file.

In addition, to hide the attachment paperclip in the email the property
HideAttachments
("http://schemas.microsoft.com/mapi/id/{00062008-0000-0000-C000-000000000046}/8514000B")
is set to true. That property tag in MAPI terms would be :
int tag = GetIDsFromNames("{00062008-0000-0000-C000-000000000046}", 0x8514)
| PT_BOOLEAN.

The HideAttachments property is set on the mail item, not on the attachment.

For direct links the HTML would look something like this:

img src="http://image.foobar.com/images/logo_200x91.gif" width="200"
height="91" alt="New Foobar" border="0"

--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Professional Programming Outlook 2007.
Reminder Manager, Extended Reminders, Attachment Options.
http://www.slovaktech.com/products.htm


"Ashish" wrote in message
...
If i mail contains embeded image and we open that mail in outlook addin
then embeded image does not display in body of mail It's in Attachments
pane.
To display embeded image in mail body(not in attachments pane) which
property we need to set?




All times are GMT +1. The time now is 09:53 AM.

Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 2.4.0
Copyright ©2004-2006 OutlookBanter.com