carbon_send_in_blue_adapter
carbon_send_in_blue_adapter
This is luckyframework/carbon's adapter for SendInBlue: https://www.sendinblue.com
https://github.com/luckyframework/carbon
Installation
-
Add the dependency to your
shard.yml
:dependencies: carbon_send_in_blue_adapter: github: atnos/carbon_send_in_blue_adapter
-
Run
shards install
Usage
Set your SENDINBLUE_API_KEY
variable inside .env
and update your config/email.cr
file with:
require "carbon_send_in_blue_adapter"
BaseEmail.configure do |settings|
if Lucky::Env.production?
sendinblue_key = sendinblue_key_from_env
settings.adapter = Carbon::SendInBlueAdapter.new(api_key: sendinblue_key)
else
settings.adapter = Carbon::DevAdapter.new(print_emails: true)
end
end
private def sendinblue_key_from_env
ENV["SENDINBLUE_API_KEY"]? || raise_missing_key_message
end
private def raise_missing_key_message
puts "Missing SENDINBLUE_API_KEY. Set the SENDINBLUE_API_KEY env variable to '' if not sending emails, or set the SENDINBLUE_API_KEY ENV var.".colorize.red
exit(1)
end
Contributing
- Fork it (https://github.com/your-github-user/carbon_send_in_blue_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
- Bruno Perles - creator and maintainer
Repository
carbon_send_in_blue_adapter
Owner
Statistic
- 1
- 1
- 1
- 1
- 4
- 6 months ago
- October 19, 2020
License
MIT License
Links
Synced at
Fri, 08 Nov 2024 06:02:12 GMT
Languages