Releases: alexgaribay/sendgrid_elixir
Releases · alexgaribay/sendgrid_elixir
v1.0.2
Changes
- Enhancements
- [Mailer] sandbox mode is fetched during runtime instead of compile time
- Fixes
- [Mailer] add missing insertion of template id
v1.0.1
Changes
- Fixes
- Make an exposed method private
v1.0.0
Changes
- Enhancements
- [Email] multiple TO recipients can be added with
add_to/2
andadd_to/3
- [Email] BCC recipients can be supported
- [Email] Reply-to name can be specified as third param of
put_reply_to/3
- [Email] added
put_send_at/2
for delayed sending of email - [Mailer] uses V3 of the SendGrid mail send API
- [Mailer] sandbox mode can be enabled through a config setting
- [Email] multiple TO recipients can be added with
- Breaking Changes
put_to/2
no longer exists; useadd_to/2
oradd_to/3
insteadadd_cc/2
when submitting a list of addresses no longer existsput_from_name/2
no longer exists; useput_from/3
and set the from_name as the third paramdelete_cc/2
no longer exists
v.0.1.1
Changes
- Enhancements
- Updated HTTPoison version for less compiler warnings when using Elixir 1.3
v0.1.0
Changes
- Enhancements
- Added some API to add email addresses for marketing campaigns
Upgrading From Prior Versions
:sendgrid
needs to be added to the list of applications in the mix.exs
file.
def application do
[applications: [:sendgrid]]
end
v0.0.2
Changes
- Fixes
- Updated some docs
v0.0.1
Initial Commit