Difference between revisions of "AWS/SNS, SQS and SES"

From Ever changing code
< AWS
Jump to navigation Jump to search
(Created page with "= Handling Bounces and Complaints = When you uses SES Simple Email System from AWS you need to manage: * bounce backs * complaints this is required by Amazon to protect your r...")
 
Line 5: Line 5:
this is required by Amazon to protect your reputation, so Amazon IP /or your domain won't get blacklisted.  
this is required by Amazon to protect your reputation, so Amazon IP /or your domain won't get blacklisted.  


Amazon SES assigns a unique message ID to each email that you successfully submit to send. When Amazon SES receives a bounce or complaint message from an ISP, we forward the feedback message to you. The format of bounce and complaint messages varies between ISPs, but Amazon SES interprets these messages and, if you choose to set up Amazon SNS topics for them, categorizes them into JSON objects. Read more link you find in [[References]] section.
Amazon SES assigns a unique message ID to each email that you successfully submit to send. When Amazon SES receives a bounce or complaint message from an ISP, we forward the feedback message to you. The format of bounce and complaint messages varies between ISPs, but Amazon SES interprets these messages and, if you choose to set up Amazon SNS topics for them, categorizes them into JSON objects. Read more link you find in [[#References]] section.


= References =
= References =
*[https://dev.to/frosnerd/event-handling-in-aws-using-sns-sqs-and-lambda-2ng Event Handling in AWS using SNS, SQS, and Lambda] dev.to
*[https://dev.to/frosnerd/event-handling-in-aws-using-sns-sqs-and-lambda-2ng Event Handling in AWS using SNS, SQS, and Lambda] dev.to
*[https://aws.amazon.com/blogs/messaging-and-targeting/handling-bounces-and-complaints/ Handling Bounces and Complaints] AWS Docs
*[https://aws.amazon.com/blogs/messaging-and-targeting/handling-bounces-and-complaints/ Handling Bounces and Complaints] AWS Docs

Revision as of 21:07, 13 October 2018

Handling Bounces and Complaints

When you uses SES Simple Email System from AWS you need to manage:

  • bounce backs
  • complaints

this is required by Amazon to protect your reputation, so Amazon IP /or your domain won't get blacklisted.

Amazon SES assigns a unique message ID to each email that you successfully submit to send. When Amazon SES receives a bounce or complaint message from an ISP, we forward the feedback message to you. The format of bounce and complaint messages varies between ISPs, but Amazon SES interprets these messages and, if you choose to set up Amazon SNS topics for them, categorizes them into JSON objects. Read more link you find in #References section.

References