Skip to content

Releases: Mikroservices/Smtp

Fix Email body (Gmail issue with not displaed body)

13 Sep 10:51
Compare
Choose a tag to compare
3.1.2

Fix Email body (Gmail issue with not displaed body)

Add Content-ID to attachments

09 Sep 05:54
Compare
Choose a tag to compare
3.1.1

Remove empty space

Add multipart/alternative mode when plain text is specified for HTML messages

09 Sep 05:29
Compare
Choose a tag to compare

User POSIX new line delimiters in body

10 Apr 09:26
Compare
Choose a tag to compare
3.0.5

Fix POSIX new line delimeters

Fix empty attachment and CLRF

08 Apr 14:04
Compare
Choose a tag to compare
3.0.4

Remove coment

Fix message encoding when send plain email with attachments

20 Feb 15:44
e8f09e1
Compare
Choose a tag to compare
Merge pull request #26 from ambro24816/master

Fix message encoding when send plain email with attachments

Async/await support

14 Nov 08:01
Compare
Choose a tag to compare
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

11 Nov 07:04
Compare
Choose a tag to compare

BCC support and anonymous sign in

06 Nov 10:39
075c18a
Compare
Choose a tag to compare

Version added BCC support and anonymous sign in into the SMTP server.

Add second HELLO after TLS handshake

16 Sep 15:51
822092f
Compare
Choose a tag to compare

Some SMTP servers (e.g. smtp.office365.com ) require a second handshake after the initial start of the tls connection.