The documentation you are viewing is for Dapr v1.7 which is an older version of Dapr. For up-to-date documentation, see the latest version.

Postmark binding spec

Detailed documentation on the Postmark binding component

配置

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

apiVersion: dapr.io/v1alpha1
kind: Component
metadata:
  name: postmark
  namespace: default
spec:
  type: bindings.postmark
  metadata:
  - name: accountToken
    value: "YOUR_ACCOUNT_TOKEN" # required, this is your Postmark account token
  - name: serverToken
    value: "YOUR_SERVER_TOKEN" # required, this is your Postmark server token
  - name: emailFrom
    value: "testapp@dapr.io" # optional
  - name: emailTo
    value: "dave@dapr.io" # optional
  - name: subject
    value: "Hello!" # optional

元数据字段规范

字段 必填 绑定支持 详情 Example
accountToken Y 输出 The Postmark account token, this should be considered a secret value "account token"
serverToken Y 输出 The Postmark server token, this should be considered a secret value "server token"
emailFrom N 输出 If set this specifies the ‘from’ email address of the email message "me@exmaple.com"
emailTo N 输出 If set this specifies the ’to’ email address of the email message "me@example.com"
emailCc N 输出 If set this specifies the ‘cc’ email address of the email message "me@example.com"
emailBcc N 输出 If set this specifies the ‘bcc’ email address of the email message "me@example.com"
subject N 输出 If set this specifies the subject of the email message "me@example.com"

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

Combined, the optional metadata properties in the component configuration and the request payload should at least contain the emailFrom, emailTo and subject fields, as these are required to send an email with success.

绑定支持

字段名为 ttlInSeconds

  • create

Example request payload

{
  "operation": "create",
  "metadata": {
    "emailTo": "changeme@example.net",
    "subject": "An email from Dapr Postmark binding"
  },
  "data": "<h1>Testing Dapr Bindings</h1>This is a test.<br>Bye!"
}
}
}
}

相关链接