Releases: Mikroservices/Smtp
Releases · Mikroservices/Smtp
Fix Email body (Gmail issue with not displaed body)
3.1.2 Fix Email body (Gmail issue with not displaed body)
Add Content-ID to attachments
3.1.1 Remove empty space
Add multipart/alternative mode when plain text is specified for HTML messages
3.1.0 Add alternative mode
User POSIX new line delimiters in body
3.0.5 Fix POSIX new line delimeters
Fix empty attachment and CLRF
3.0.4 Remove coment
Fix message encoding when send plain email with attachments
Merge pull request #26 from ambro24816/master Fix message encoding when send plain email with attachments
Async/await support
let email = try! Email(from: EmailAddress(address: "[email protected]", name: "John Doe"),
to: [EmailAddress(address: "[email protected]", name: "Ben Doe")],
subject: "The subject (text)",
body: "This is email body.")
try await request.smtp.send(email)
Fix NIOSSLContext warning
Full Changelog: 3.0.0...3.0.1
BCC support and anonymous sign in
Version added BCC support and anonymous sign in into the SMTP server.
Add second HELLO after TLS handshake
Some SMTP servers (e.g. smtp.office365.com ) require a second handshake after the initial start of the tls connection.