carbon_sendgrid_adapter
Carbon SendGrid Adapter
Integration for Lucky's Carbon email library and SendGrid.
Installation
-
Add the dependency to your
shard.yml
:dependencies: carbon_sendgrid_adapter: github: luckyframework/carbon_sendgrid_adapter
-
Run
shards install
Usage
Create an environment variable called SEND_GRID_KEY
with your SendGrid api key.
Update your config/email.cr
file to use SendGrid
require "carbon_sendgrid_adapter"
BaseEmail.configure do |settings|
if Lucky::Env.production?
send_grid_key = send_grid_key_from_env
settings.adapter = Carbon::SendGridAdapter.new(api_key: send_grid_key)
else
settings.adapter = Carbon::DevAdapter.enw
end
end
private def send_grid_key_from_env
ENV["SEND_GRID_KEY"]? || raise_missing_key_message
end
private def raise_missing_key_message
puts "Missing SEND_GRID_KEY. Set the SEND_GRID_KEY env variable to 'unused' if not sending emails, or set the SEND_GRID_KEY ENV var.".colorize.red
exit(1)
end
Contributing
- Fork it (https://github.com/your-github-user/carbon_sendgrid_adapter/fork)
- 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 a new Pull Request
Contributors
- Matthew McGarvey - maintainer