carbon_aws_ses_adapter
Version, currently 1.13 versions
- 1.2latestDec 31, 2020
- 1.1not indexedJul 30, 2021
- 1.0not indexedJul 30, 2021
github.com/keizo3/carbon_aws_ses_adapter
An email adapter for Amazon SES that integrates with Carbon
Nothing has been indexed for 1.1 yet. The tag is recorded, its shard.yml has not been read, so the manifest and dependency list below are empty because they are unknown rather than because they are absent.
Installation
# Add this to your shard.yml
dependencies:
carbon_aws_ses_adapter:
github: keizo3/carbon_aws_ses_adapter
version: ~> 1.1Then run:
shards installshard.yml
No shard.yml has been indexed for 1.1. You can read it on the repository.
Dependencies
Unknown: the shard.yml for this version has not been read yet.
README
This README is the one indexed from the repository at its latest ref, not from the tag for this version.
Carbon AWS SES Adapter
This is luckyframework/carbon's adapter for AWS SES (Simple Email Service)
https://github.com/luckyframework/carbon
Installation
Add this to your application's shard.yml:
dependencies:
carbon_aws_ses_adapter:
github: keizo3/carbon_aws_ses_adapter
Add this to your application's shards.cr:
require "carbon_aws_ses_adapter"
Usage
Configure AWS SES Simple Email Service
- Go to the Amazon Web Services developer console.
- Ensure that AWS SES is correctly set up according to the documentation.
- Create an AWS IAM user who can send emails. The user must have at least the following permissions:
ses:SendEmailses:SendRawEmail
- Copy the AWS Access Key and AWS Secret Access key for the IAM user you've created.
- Set up the adapter in Lucky via the
config/email.crfile.
Configure the mailer class
# config/email.cr
BaseEmail.configure do
settings.adapter = Carbon::AwsSesAdapter.new(
key: ENV["AWS_SES_ACCESS_KEY"],
secret: ENV["AWS_SES_SECRET_KEY_KEY"],
region: ENV["AWS_SES_REGION"]
)
end
Development
shards install- Make changes
crystal spec(will skip sending test emails to AWS SES)crystal spec -D send_real_email(will send real emails, and requires the below.envfile content)
# In .env
# If you want to run tests that actually test emails against the AWS SES
AWS_SES_ACCESS_KEY=get_from_aws_ses_key
AWS_SES_SECRET_KEY=get_from_aws_ses_secret
AWS_SES_REGION=get_from_aws_ses_region
AWS_SES_FROM_ADDRESS=verified_address
AWS_SES_TO_ADDRESS=recipient_address
Contributing
- Fork it ( https://github.com/keizo3/carbon_aws_ses_adapter )
- Create your feature branch (git checkout -b my-new-feature)
- Make your changes
- Run
./bin/testto run the specs, build shards, and check formatting - 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
- keizo3 - creator, maintainer
Documentation
Built from the current release. The first visit to a release nobody has asked for starts its build.
Links
This release
- Version
1.1- Tagged
- Jul 30, 2021
- Commit
a7cab40f937e- Indexed
- not yet
Dependents
No indexed shard depends on this one yet.
Repository
github.com/keizo3/carbon_aws_ses_adapter
Metadata
- Created
- Aug 12, 2026
- Updated
- Aug 15, 2026
- Synced
- Aug 15, 2026
- Versions
- 3