Skip to content

Releases: xhit/go-simple-mail

v2.16.0

17 Aug 13:42
abcd63a
Compare
Choose a tag to compare

What's Changed

  • refactor(email): export priority type by @nikoksr in #84
  • Add: Ability to specify delivery status notification by @Herz3h in #87
  • Add content type text/x-amp-html by @Smirnoff2019 in #89

New Contributors

Full Changelog: v2.15.0...v2.16.0

v2.15.0

07 Jul 00:33
457c8da
Compare
Choose a tag to compare
  • Now you can use a custom net.Conn

Full Changelog: v2.14.1...v2.15.0

v2.14.1

06 Jul 16:04
6b425f7
Compare
Choose a tag to compare

What's Changed

  • fix data race sending mail by @xhit in #82

Full Changelog: v2.14.0...v2.14.1

v2.14.0

04 Jul 16:07
c86cc44
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v2.13.0...v2.14.0

v2.13.0

10 Nov 13:34
812c77e
Compare
Choose a tag to compare

What's Changed

  • Fixes #70 and allows usage of duplicate recipients by @mukulsib in #71

New Contributors

  • @mukulsib made their first contribution in #71

Full Changelog: v2.12.0...v2.13.0

v2.12.0

27 Sep 19:26
93b483a
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v2.11.0...v2.12.0

v2.11.0

26 Feb 05:08
Compare
Choose a tag to compare

Thanks for yours contributions!

v2.10.0

07 Jul 02:18
Compare
Choose a tag to compare
  • Support send mail to SMTP Server without authentication. #41
  • AuthType is exported. #40

v2.9.1

21 May 17:23
4372d00
Compare
Choose a tag to compare

Fixed panic in AddAttachment and AddInline when not name is specified.

v2.9.0

06 May 03:55
Compare
Choose a tag to compare

This version add a new API for attachments called Attach that receive a new public struct called File with the file to attach. The old APIs are deprecated.

Added a new API SetBodyData to set body from []byte to help reducing the memory allocation when converting a []byte -> string -> []byte buffer. #36

Also, thanks to @jlinnosa to help with these changes and the new Attach API:

  • Implement inline attachment support for Base64 encoded strings with new API func (email *Email) AddInlineBase64(b64File string, name string, mimeType string)
  • Refactor attachments and test added.