mirror of
https://github.com/nickpoida/og-aws.git
synced 2025-02-13 10:21:57 +00:00
[#201] Added details for SES
This commit is contained in:
parent
a933fef394
commit
c0968d77ea
1 changed files with 18 additions and 1 deletions
19
README.md
19
README.md
|
@ -53,7 +53,7 @@ Table of Contents
|
|||
| [Kinesis Streams](#kinesis-streams) | [📗](#kinesis-streams-basics) | [📘](#kinesis-streams-tips) | [📙](#kinesis-streams-gotchas-and-limitations) |
|
||||
| [Device Farm](#device-farm) | [📗](#device-farm-basics) | | |
|
||||
| [IoT](#iot) | [📗](#iot-basics) | [📘](#iot-tips) | [📙](#iot-gotchas-and-limitations) |
|
||||
|
||||
| [SES](#ses) | [📗](#ses-basics) | [📘](#ses-tips) | [📙](#ses-gotchas-and-limitations) |
|
||||
|
||||
**Special Topics**
|
||||
|
||||
|
@ -1381,6 +1381,23 @@ IoT
|
|||
- [AWS Alexa trivia voice example](https://developer.amazon.com/public/community/post/TxDJWS16KUPVKO/New-Alexa-Skills-Kit-Template:-Build-a-Trivia-Skill-in-under-an-Hour) is a quick-start using Alexa voice capability and Lambda.
|
||||
- Some Raspberry Pi examples include the [Beacon project](https://github.com/araobp/beacon/blob/master/README.md), [Danbo](https://github.com/awslabs/aws-iot-demo-for-danbo), and [GoPiGo](https://github.com/awslabs/aws-iotbot).
|
||||
|
||||
SES
|
||||
---
|
||||
|
||||
### SES Basics
|
||||
|
||||
- 📒 [Homepage](https://aws.amazon.com/ses/) ∙ [Documentation](https://aws.amazon.com/documentation/ses/) ∙ [FAQ](https://aws.amazon.com/ses/faqs/) ∙ [Pricing](https://aws.amazon.com/ses/pricing/)
|
||||
- **SES** (or Simple Email Service) is a service that exposes SMTP endpoints for your application to directly integrate with.
|
||||
|
||||
### SES Tips
|
||||
|
||||
- 🔹**Bounce Handling:** Ensure you handle this early enough. Your email sending can be shut down in case of repeated bounces. 📒 [Processing Bounces and Complaints](http://docs.aws.amazon.com/ses/latest/DeveloperGuide/best-practices-bounces-complaints.html)
|
||||
- 🔹**Credentials:** Many developers get confused between SES credentials and AWS API keys. Ensure you enter SMTP credentials while using the SMTP APIs 📒 [Using Credentials With Amazon SES](https://docs.aws.amazon.com/ses/latest/DeveloperGuide/using-credentials.html) ∙ [Obtaining Your Amazon SES SMTP Credentials](https://docs.aws.amazon.com/ses/latest/DeveloperGuide/smtp-credentials.html)
|
||||
|
||||
### SES Gotchas and Limitations
|
||||
|
||||
- 🔸**Internet Access:** The SMTP endpoints are on the Internet and will not be accessible from a location without Internet access (e.g. a private subnet without NAT gateway route in the routing table). Setup a SMTP relay instance in a subnet with Internet access for the same(📒 [Integrating Amazon SES with Your Existing Email Server](http://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-email-smtp-existing-server.html)). ❗If you are using a proxy instead of a NAT, confirm if your proxy service supports SMTP
|
||||
|
||||
High Availability
|
||||
-----------------
|
||||
|
||||
|
|
Loading…
Reference in a new issue