Dima
Dima

Reputation: 719

Adding headers to outgoing emails using WinRT

I would like to write email client app using WinRT API that would send emails with custom headers (x-headers). Content of the header will depend on content of email. Something like in this post.

I did not find any methods or properties of the EmailMessage to do it. Is there a way to register message processor down the email send pipeline (if there is a pipeline)?

Thank you

Upvotes: 1

Views: 57

Answers (1)

Thomas LEBRUN
Thomas LEBRUN

Reputation: 436

As far as I know, modifying headers for email messages is not possible in WinRT and there is no endpoint you could have that will allow you to "intercept" the messages to modify them.

Upvotes: 1

Related Questions