dmcgiv / DKIM.Net

DomainKeys Identified Mail (DKIM) and DomainKey email signing for .Net (C#)
30 stars 9 forks source link

Use MimeKit instead of System.Net.Mail to solve the boundary issue #6

Closed jstedfast closed 4 years ago

jstedfast commented 10 years ago

MimeKit is designed so that boundary strings are preserved each time you write the message, so it does not suffer from the problem that System.Net.Mail suffers from.

MailKit can be used to send the message via SMTP.

jstedfast commented 9 years ago

I've actually just implemented support for generating DKIM signatures in MimeKit itself which probably makes this issue redundant.