RailsMailgun
Mailgun integration for rails
Installation
Add this line to your application's Gemfile:
gem 'rails-mailgun', git: "git://github.com/code-mancers/rails-mailgun.git"
And then execute:
$ bundle install
Usage
Mailgun needs 2 config variables.
api_host
: the domain which you have used for registrationapi_key
: the api key for access. it starts withkey-
Add these lines to your environment/production.rb
file
Your::Application.configure do
# ....
# mailgun deilvery method
config.action_mailer.delivery_method = :mailgun
config.action_mailer.mailgun_settings = {
api_host: "samples.mailgun.org",
api_key: "key-3ax6xnjp29jd6fds4gc373sgvjxteol0"
}
end
Running the specs
Specs can be run via:
bundle exec rspec spec/*_spec.rb
TODO
- Add error handling once the response is received from mailgun
- Write a helper rake task to quickly check whether integration is working or not!
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request