Twilio SendGrid binding spec

Detailed documentation on the Twilio SendGrid binding component

配置

To setup Twilio SendGrid binding create a component of type bindings.twilio.sendgrid. See this guide on how to create and apply a binding configuration.

  1. apiVersion: dapr.io/v1alpha1
  2. kind: Component
  3. metadata:
  4. name: sendgrid
  5. namespace: default
  6. spec:
  7. type: bindings.twilio.sendgrid
  8. version: v1
  9. metadata:
  10. - name: emailFrom
  11. value: "testapp@dapr.io" # optional
  12. - name: emailTo
  13. value: "dave@dapr.io" # optional
  14. - name: subject
  15. value: "Hello!" # optional
  16. - name: apiKey
  17. value: "YOUR_API_KEY" # required, this is your SendGrid key

Warning

以上示例将密钥明文存储, It is recommended to use a secret store for the secrets as described here.

元数据字段规范

字段必填绑定支持详情Example
apiKeyY输出SendGrid API key, this should be considered a secret value“apikey”
emailFromN输出If set this specifies the ‘from’ email address of the email message. Optional field, see below“me@example.com”
emailToN输出If set this specifies the ‘to’ email address of the email message. Optional field, see below“me@example.com”
emailCcN输出If set this specifies the ‘cc’ email address of the email message. Optional field, see below“me@example.com”
emailBccN输出If set this specifies the ‘bcc’ email address of the email message. Optional field, see below“me@example.com”
subjectN输出If set this specifies the subject of the email message. Optional field, see below“subject of the email”

绑定支持

字段名为 ttlInSeconds

  • create

Example request payload

You can specify any of the optional metadata properties on the output binding request too (e.g. emailFrom, emailTo, subject, etc.)

  1. {
  2. "metadata": {
  3. "emailTo": "changeme@example.net",
  4. "subject": "An email from Dapr SendGrid binding"
  5. },
  6. "data": "<h1>Testing Dapr Bindings</h1>This is a test.<br>Bye!"
  7. }

相关链接