mailer
mailer copied to clipboard
Compose and send emails from Dart. Supports file attachments, HTML emails and multiple transport methods.
Mention inline images in README. (content-id should contain an `@` !) mailer should add the `` to the content-id. kind of a duplicate of #85
A previous version of Mailer (e.g. version 1.1.0) had significant syntax checking of email addresses for validity against RFC 5822, as well as parsing an address into its components. This...
It would be nice if the `mailer` package could filter out recipient duplicates (at least the email parts), and specify them only once on the message header.
I think it could be better to create a message with a builder pattern and make the message immutable: ``` Message msg = Message.Builder() ..from = new Address(username, 'Your name')...
instead of ending DATA with '\r\n.\r\n' many smtp server support CHUNKING rfc3030. As a client we don't really care about encoding '\r\n.\r\n' but CHUNKING is a requirement for BINARYMIME which...
rfc6531 allows utf8 encoded mail addresses for both the local and domain part. A server supporting this extension returns SMTPUTF8 in the EHLO response.
RFC 5890 provides support for encoding non-ASCII domain names in the Domain Name System This encoding should only be used if the server does not support SMTPUTF8 (separate issue.)
The readme leads to believe that it is possible to send an email from flutter using code by JohannesMilke. This is from my point of view not true or at...