AWS SES binding spec

To setup AWS binding create a component of type . See this guide on how to create and apply a binding configuration.

See for information about authentication-related attributes

Warning

The above example uses secrets as plain strings. It is recommended to use a secret store for the secrets as described .

Important

This component supports output binding with the following operations:

  • create

You can specify any of the following optional metadata properties with each request:

  • emailCc
  • emailBcc
  • subject

When sending an email, the metadata in the configuration and in the request is combined. The combined set of metadata must contain at least the emailFrom, emailTo, emailCc, emailBcc and subject fields.

Example:

  1. "operation": "create",
  2. "metadata": {
  3. "emailTo": "dapr-smtp-binding@example.net",
  4. "subject": "Email subject"
  5. },
  6. "data": "Testing Dapr SMTP Binding"
  7. }

The emailTo, emailCc and emailBcc fields can contain multiple email addresses separated by a semicolon.