2 個答案
- 最新
- 最多得票
- 最多評論
1
One way you can experiment and learn is to use the webhook.site webapp, which will generate a public API URL that you can use in SNS and see the data as it's coming in.
已回答 2 年前
0
I'm not sure what you mean by query parameters, but I use a constant URL for the endpoint and rely on tags to identify the specific recipient. So when I send an email, I create a db row, which gives me the row ID from the database insert id. Then I use that ID as a tag in the destination. Then when I send the email, AWS SES returns the message ID, which I update the db row. And when the SQS message comes through, the tag is part of the message, which helps me match up the database row.
https://docs.aws.amazon.com/ses/latest/APIReference/API_BulkEmailDestination.html
已回答 2 年前
相關內容
- 已提問 1 個月前
- 已提問 10 個月前
- AWS 官方已更新 10 個月前
- AWS 官方已更新 5 個月前
- AWS 官方已更新 1 年前
Hi Purdy, Thanks for your reply! It was really a great hook for testing, but the problem exists still now, which is I couldn't get the query params to receive these data into my endpoint! You can see the below data coming after creation. How do I reciev?
Thanks