A plug-in for ActionMailer to send emails via Kajomi Mail API, based on the kajomi gem.
Add this line to your application's Gemfile:
gem 'kajomi-rails'
And then execute:
$ bundle
Or install it yourself as:
$ gem install kajomi-rails
Add this to your config/application.rb or environments/production.rb:
config.action_mailer.delivery_method = :kajomi
config.action_mailer.kajomi_settings = {
shared_key: "your-shared-key",
secret_key: "your-secret-key"
}
kajomi
gem- Kajomi Mail API account with a your shared and secret key
- 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