2 Antworten
- Neueste
- Die meisten Stimmen
- Die meisten Kommentare
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.
beantwortet vor 2 Jahren
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
beantwortet vor 2 Jahren
Relevanter Inhalt
- AWS OFFICIALAktualisiert vor einem Jahr
- AWS OFFICIALAktualisiert vor 2 Jahren
- AWS OFFICIALAktualisiert vor 3 Jahren
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