Reputation: 119
Using asp.net; I have to send Html emails with a text alternateview and sign it with DKIM.
I have managed to sign emails when it doesn't include an alternateview. Does anyone have a solution to do so where the email has an alternateview?
Upvotes: 0
Views: 224
Reputation: 1461
System.Net.Mail
is not provide dkim with AlternateView and attachment.
Use Mimekit for Dkim with AlternateView and attachment. Its will be worked surely.
Its also open source and better than .Net.Mail
.
Upvotes: 0
Reputation: 10940
there is no difference, i calculate the hash over the complete body - over all alternate parts and the headers.
Upvotes: 1