1 Answer
- Newest
- Most votes
- Most comments
0
Your customer can continue to use their existing endpoint and IAM user / SMTP credentials setup after setting up the rest of their Pinpoint settings. In fact, the Pinpoint Generate SMTP credentials
button redirects to SES's SMTP credentials page, and if you create one IAM user / SMTP credential pair through both methods you'll notice that both have the same permissions attached to them
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": "ses:SendRawEmail",
"Resource": "*"
}
]
}
As an aside, for adding open / click tracking for emails sent over SMTP, the customer needs to include an additional email header called X-SES-CONFIGURATION-SET
with a value a configuration set for which open & click tracking are enabled. Code samples for this are available here .
answered 5 years ago
Relevant content
- asked 2 months ago
- asked 2 years ago
- asked 4 years ago
- asked a year ago
- AWS OFFICIALUpdated 2 years ago
- AWS OFFICIALUpdated 2 years ago
- AWS OFFICIALUpdated 2 years ago
- AWS OFFICIALUpdated 4 months ago