Configuration
Notifiers
AWS SES

AWS SES

Since: 1.6.0

AWS SES (opens in a new tab) is a transactional email service.

We can send AWS SES message by use AWS SES API (opens in a new tab), you can follow the AWS SES API Guide (opens in a new tab) to get the Access Key ID and Secret Access Key.

Configuration

  • type: ses
  • from - Sender email address
  • to - Receiver email address
  • region - AWS region, default: us-east-1
  • access_key_id - AWS Access Key ID
  • secret_access_key - AWS Secret Access Key
  • on_success - Send email when backup success, default: true
  • on_failure - Send email when backup warning, default: true
models:
  my_app:
    storages:
      local:
        type: local
        keep: 10
    notifiers:
      ses:
        type: ses
        from: from@example.com
        to: to@example.com
        access_key_id: xxxxxxxx
        secret_access_key: xxxxxxxx
        region: us-east-1