djcheeky
asked on
Setting Email Header Message Id property in C#
Hi
I am working with the following simple mail message, seen in the code below.
How do I set the Message Id proprty contained in the header information for an outgoing mail??
I would like to do something like:
msgClient.Headers.MessageI d = messageId;
I see that the MailMessage class has the following property:
public NameValueCollection Headers
I suspect I would need to use that, but how??
Thanks
I am working with the following simple mail message, seen in the code below.
How do I set the Message Id proprty contained in the header information for an outgoing mail??
I would like to do something like:
msgClient.Headers.MessageI
I see that the MailMessage class has the following property:
public NameValueCollection Headers
I suspect I would need to use that, but how??
Thanks
MailMessage msgClient = new MailMessage();
msgClient.From = "test@test.com"
ASKER CERTIFIED SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
ASKER