I am wanting to build an email that contains non-ascii characters in the subject. It seems there is a standard RFC2047 that discusses this.
Can I do this in Mail.dll?
Of course! It will be properly encoded (and decoded when parsed). You don't need to worry nor read the RFCs.
MailBuilder builder = new MailBuilder(); builder.Subject = "National characters: zażółć (make it yellow)" IMail email = builder.Create();