G
guidoh
Just finished an Outlook COM Addin that uses the Microsoft CDO 1.21
library to create mail messages that have custom categories, which
looks like this:
Dim oMessage As Outlook.MailItem
Set oMessage = ActiveInspector.CurrentItem
oMessage.Save
MsgID = oMessage.EntryID
With oMessage
.To = SomeOnesEmailAddress
.Categories = MyCustomCategory
.Send
End With
When this message is sent to our Exchange Server running 2003 Service
Pack 1 there is another COM Addin in Exchange that recognizes the
message by its Categories and starts a custom action.
This works fine when I send the message from within our Office LAN,
however when I send a similar message from outside using SMTP the
Categories are gone by the time the message arrives within the scope of
our Exchange Server. This will probably be due to the mail format.
There is however a bigger problem when I send an message carrying
customised properties to our Exchange 2003 Server running which has
Service Pack 2 installed, the minute my message arrives the Categories
are lost.
I am hoping someone may have a solution or workaround for this problem,
unfortunately rolling back Exchange 2003 Service Pack 2 is not an
option.
Regards,
Guido
library to create mail messages that have custom categories, which
looks like this:
Dim oMessage As Outlook.MailItem
Set oMessage = ActiveInspector.CurrentItem
oMessage.Save
MsgID = oMessage.EntryID
With oMessage
.To = SomeOnesEmailAddress
.Categories = MyCustomCategory
.Send
End With
When this message is sent to our Exchange Server running 2003 Service
Pack 1 there is another COM Addin in Exchange that recognizes the
message by its Categories and starts a custom action.
This works fine when I send the message from within our Office LAN,
however when I send a similar message from outside using SMTP the
Categories are gone by the time the message arrives within the scope of
our Exchange Server. This will probably be due to the mail format.
There is however a bigger problem when I send an message carrying
customised properties to our Exchange 2003 Server running which has
Service Pack 2 installed, the minute my message arrives the Categories
are lost.
I am hoping someone may have a solution or workaround for this problem,
unfortunately rolling back Exchange 2003 Service Pack 2 is not an
option.
Regards,
Guido