A ActionMailer adapter using SendGrid Web API v3.
- Ruby >= 2.3.0
- sendgrid-ruby >= 5.0
Add this line to your application's Gemfile:
gem 'sendgrid_actionmailer_adapter'
And then execute:
$ bundle
Or install it yourself as:
$ gem install sendgrid_actionmailer_adapter
First, in your config/application.rb
or config/environments/*.rb
,
set SendgridActionMailerAdapter::DeliveryMethod
to config.action_mailer.delivery_method
.
Rails.application.configure do
# :
config.action_mailer.delivery_method = SendGridActionMailerAdapter::DeliveryMethod
# :
end
Next, create an initializer file for this gem and add to your config/initializers
directory.
Note that the api_key
value is required, so issue your api_key at SendGrid Settings API Keys.
SendGridActionMailerAdapter.configure do |config|
# required
config.api_key = ENV['YOUR_SENDGRID_API_KEY']
# optional(SendGrid)
config.host = 'host'
config.request_headers = { key: 'val' }
config.version = 'v3'
# optional(Retry)
config.retry_max_count = 3
config.retry_wait_seconds = 3.0
# optional(Others)
config.logger = ::Logger.new(STDOUT)
end
Then, you can send emails from ActionMailer class.
class TestMailer < ApplicationMailer
default from: '[email protected]',
reply_to: '[email protected]'
def test_mail
mail(to: '[email protected]', subject: 'Test mail')
end
end
class TestMailsController < ApplicationController
def create
TestMailer.test_mail.deliver_now
end
end
You can set categories
parameters via .default
or #mail
method.
class TestMailer < ApplicationMailer
default from: '[email protected]',
reply_to: '[email protected]',
categories: ['Test']
def test_mail
mail(to: '[email protected]', subject: 'Test mail', categories: ['Test1', 'Test2'])
end
end
You can set 'send_at' parameter for scheduled emails.
class TestMailer < ApplicationMailer
default from: '[email protected]',
reply_to: '[email protected]'
def test_mail
mail(to: '[email protected]', subject: 'Test mail', send_at: 1.hour.since)
end
end
If you specified true
to remove_from_bounces
option,
Delete a bounce
API is called for eah :to addresses.
This option is useful for resending emails to mail addresses in bounce list.
** If you want to use this option, please add suppressions wirte
permission to your API key. **
class TestMailer < ApplicationMailer
default from: '[email protected]',
reply_to: '[email protected]'
def test_mail
mail(to: '[email protected]', subject: 'Test mail', remove_from_bounces: true)
end
end
- personalizations
- to
- cc
- bcc
- from
- reply_to
- subject
- content
- attachments
- categories
- send_at
- personalizations
- subject
- headers
- substitutions
- custom_args
- send_at
- template_id
- sections
- headers
- custom_args
- batch_id
- asm
- in_pool_name
- mail_settings
- tracking_settings
After checking out the repo, run bin/setup
to install dependencies.
Then, run bundle exec rake
to run the rubocop and tests.
You can also run bin/console
for an interactive prompt that will allow you to experiment.
To install this gem onto your local machine, run bundle exec rake install
.
To release a new version, update the version number in version.rb
,
and then run bundle exec rake release
, which will create a git tag for the version,
push git commits and tags, and push the .gem
file to rubygems.org.
Bug reports and pull requests are welcome on GitHub at https://github.com/ryu39/sendgrid_actionmailer_adapter. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.
The gem is available as open source under the terms of the MIT License.