Releases: xhit/go-simple-mail
Releases · xhit/go-simple-mail
v2.16.0
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
- @nikoksr made their first contribution in #84
- @Herz3h made their first contribution in #87
- @Smirnoff2019 made their first contribution in #89
Full Changelog: v2.15.0...v2.16.0
v2.15.0
- Now you can use a custom
net.Conn
Full Changelog: v2.14.1...v2.15.0
v2.14.1
v2.14.0
What's Changed
- Auto detect authentication type by @utkarshmani1997 in #80
- Allow Bcc in header by @xhit in #81
New Contributors
- @utkarshmani1997 made their first contribution in #80
Full Changelog: v2.13.0...v2.14.0
v2.13.0
v2.12.0
What's Changed
- improve contenttype api usage by @yusufozturk in #63
- fix MIME-Version header by @arturwwl in #66
New Contributors
- @yusufozturk made their first contribution in #63
- @arturwwl made their first contribution in #66
Full Changelog: v2.11.0...v2.12.0
v2.11.0
- Adds text/calendar content type (@kennethklee) #50
- Add AddAlternativeData (@GerardRodes) #51
- Added go-dkim package and List-Unsubscribe header (@atifceylan) #54
Thanks for yours contributions!
v2.10.0
v2.9.1
v2.9.0
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.