tags:

views:

132

answers:

1

I have decided to use custom headers in email

 message.Headers.Add("Origin", "My Company");

The problem is that when the email is forwarded these original headers seem to get lost, is there a way to ensure the original headers are kept during a forwarding operation.

Either this... or a more permanent way to store values in an html formatted message.

+1  A: 

Yes this happens. to get round it read the header from the orginal email then re add them to the Fwd email to persist.

76mel