我正在使用Cognito来管理用户。按照AWS的指南,我必须像这样配置EmailConfiguration.SourceArn:
arn:aws:ses:{region}:{account_id}:identity/noreply@example-domain.com
我可以将电子邮件地址设置为SomeApp <noreply@example-domain.com>
吗?它将在用户的收件箱中显示“ SomeApp”标签,而不是“ noreply”标签,这更加用户友好。
答案 0 :(得分:1)
在这种情况下,您必须为SourceArn
和From
这两个属性设置值。
详细了解MongoDB Performance Testing with JMeter。
EmailConfiguration
块将类似于(yml语法):
EmailConfiguration:
...
SourceArn: "arn:aws:ses:{region}:{account_id}:identity/noreply@example-domain.com"
From: "SomeApp <noreply@example-domain.com>"
...