Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
Home
DiscussionsAccessExcelInfoPathOutlookPowerPointPublisherWord
DirectoryUser Groups
Related Topics
Outlook ExpressInternet ExplorerWindowsMS Server ProductsMore Topics ...

MS Office Forum / Outlook / Programming Add-Ins / June 2007

Tip: Looking for answers? Try searching our database.

Add x-header using CDO 1.21

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
Bharathi Harshavardhan - 28 Jun 2007 12:05 GMT
Hi,

I have a requirement where i need to store some information into the x-
header of an outlook email.

I am using Outlook 2003 and Visual Studio 2005(C#). I have created a
shared Addin project.

I got to know that x-headers cannot be created using Outlook Object
Model. I want to use CDO 1.21 for this purpose.

Could anyone please assist me how to add x-header to an outlook email
using CDO1.21.

Thanks in Advance
Bharathi
Ken Slovak - [MVP - Outlook] - 28 Jun 2007 14:40 GMT
You really should not be using CDO 1.21 from C# or any other .NET language.
Neither CDO nor Extended MAPI is supported in .NET code at all and while it
may work most of the time things will fail, usually at a client site and no
one will be able to support you at all.

// toAdd = x-header to add to mail item.
// ID = MailItem.EntryID, item must be saved to have an ID.
// StoreID is the EntryID of the Store where the item is located. Use
item.Parent.StoreID to get it.
private void AddHeader(string toAdd, string ID, string StoreID)
{
   // see http://support.microsoft.com/kb/195656 for how to convert
   //    a MAPI tag to a CDO tag
   const string propSet = "8603020000000000C000000000000046";

   MAPI.Session cdo = new MAPI.Session;
   cdo.Logon "", "", false, false, missing, missing, missing;
   MAPI.Message item = (MAPI.Message)cdo.GetMessage(ID, StoreID);
   MAPI.Fields fields = (MAPI.Fields)item.Fields;
   MAPI.Field header = fields.Add("MyHeader", 8, toAdd, propSet);
   item.Update(true, true);
}

After that, since Outlook doesn't really know about changes made to an item
outside of its scope you should do something like this to make it aware of
the change:

   Outlook.MailItem mail.Subject = mail.Subject;
   mail.Save;

Signature

Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Absolute Beginner's Guide to Microsoft Office Outlook 2003
Reminder Manager, Extended Reminders, Attachment Options
http://www.slovaktech.com/products.htm

> Hi,
>
[quoted text clipped - 12 lines]
> Thanks in Advance
> Bharathi
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.