![]() |
If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. |
|
|
Thread Tools | Search this Thread | Display Modes |
#1
|
|||
|
|||
![]()
Good day,
I have an Outlook 2007 AddIn that posts attachments to a document server. The issue that that not only "real" attachments are posted, but also signatures and other images that are attached. Is there a way to filters these out? Thanks, Derick |
Ads |
#2
|
|||
|
|||
![]()
You will have to use the PropertyAccessor object on each attachment to look
for properties not exposed to the object model to be sure. One property to look at is AttachmentType, if that is 6 (ATTACH_OLE) then it's an embedded attachment. If that's not 6 however it still could be an embedded attachment. It could be 1 (ATTACH_BY_VALUE) and still could be embedded. So, you have to check for PR_ATTACH_CONTENT_ID and see if it's there. If it is there it's an embedded attachment. When you get the PropertyAccessor object use its GetProperty() method with the following DASL string property tag: "urn:schemas:mailheader:content-id" -- 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 "Derick Swart" wrote in message news ![]() Good day, I have an Outlook 2007 AddIn that posts attachments to a document server. The issue that that not only "real" attachments are posted, but also signatures and other images that are attached. Is there a way to filters these out? Thanks, Derick |
#3
|
|||
|
|||
![]()
Hectic!
Thanks Ken. "Ken Slovak - [MVP - Outlook]" wrote in message ... You will have to use the PropertyAccessor object on each attachment to look for properties not exposed to the object model to be sure. One property to look at is AttachmentType, if that is 6 (ATTACH_OLE) then it's an embedded attachment. If that's not 6 however it still could be an embedded attachment. It could be 1 (ATTACH_BY_VALUE) and still could be embedded. So, you have to check for PR_ATTACH_CONTENT_ID and see if it's there. If it is there it's an embedded attachment. When you get the PropertyAccessor object use its GetProperty() method with the following DASL string property tag: "urn:schemas:mailheader:content-id" -- 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 "Derick Swart" wrote in message news ![]() Good day, I have an Outlook 2007 AddIn that posts attachments to a document server. The issue that that not only "real" attachments are posted, but also signatures and other images that are attached. Is there a way to filters these out? Thanks, Derick |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Unable to cast object of type 'System.__ComObject' to type 'Microsoft.Office.Interop.Outlook.ApplicationClass' | John Yovas | Add-ins for Outlook | 2 | September 12th 08 04:23 PM |
[VSTO] Addin to prohibit to add attachments | Mercier | Outlook and VBA | 3 | September 11th 08 07:14 PM |
Can't open attachments of type MSG | John | Outlook - General Queries | 3 | April 11th 08 07:34 PM |
Rejected by POST filter? can't send attachments? | Gabe Grall | Outlook - General Queries | 4 | February 1st 08 09:51 PM |
Unable to cast COM object of type 'System.__ComObject' to interface type 'Microsoft.Office.Interop.Outlook.ContactItem'. | Dhananjay | Outlook and VBA | 3 | October 13th 07 07:56 AM |