In progress
Emailing
Marionette supports several integrations for email services to send emails to users (registration, email confirmation, notifitactions, etc).
SendGrid
SendGrid - this is a platform that will improve transaction mailings and will scale them to solve email marketing problems.
# global/config.yaml
...
messages:
...
mail:
type: SendGrid
user: USER
password: CHANGE_ME
from: notification@example.org
...
Amazon Simple Email Service
Amazon Simple Email Service (SES) is a cost-effective email service built on the reliable and scalable infrastructure that AWS developed to serve its own customer base. With Amazon SES, you can send transactional email, marketing messages, or any other type of high-quality content to your customers.
# global/config.yaml
...
messages:
...
mail:
type: AWS
region: CHANGE_ME
ses_user_access_key: CHANGE_ME
ses_secret_access_key: CHANGE_ME
from: notification@example.org
...
Â
SMTP server
TBD