carbon_postmark_adapter
forked from atnos/carbon_mailgun_adaptercarbon_postmark_adapter
This is luckyframework/carbon's adapter for Postmark: https://postmarkapp.com/
https://github.com/luckyframework/carbon
Installation
-
Add the dependency to your
shard.yml
:dependencies: carbon_postmark_adapter: github: makisu/carbon_postmark_adapter
-
Run
shards install
Usage
Set your POSTMARK_SERVER_TOKEN
inside .env
POSTMARK_SERVER_TOKEN=xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
and update your config/email.cr
file with:
require "carbon_postmark_adapter"
BaseEmail.configure do |settings|
if Lucky::Env.production?
postmark_server_token = postmark_server_token_from_env
settings.adapter = Carbon::PostmarkAdapter.new(server_token: postmark_server_token)
else
settings.adapter = Carbon::DevAdapter.new(print_emails: true)
end
end
private def postmark_server_token_from_env
ENV["POSTMARK_SERVER_TOKEN"]? || raise_missing_key_message
end
private def raise_missing_key_message
puts "Missing POSTMARK_SERVER_TOKEN. Set the POSTMARK_SERVER_TOKEN env variable to '' if not sending emails, or set the POSTMARK_SERVER_TOKEN ENV var.".colorize.red
exit(1)
end
Contributing
- Fork it (https://github.com/your-github-user/carbon_postmark_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
- Xavi Ablaza - creator and maintainer
Repository
carbon_postmark_adapter
Owner
Statistic
- 2
- 3
- 0
- 1
- 3
- 5 months ago
- February 20, 2021
License
MIT License
Links
Synced at
Wed, 06 Nov 2024 21:46:03 GMT
Languages