You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+43Lines changed: 43 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -246,6 +246,7 @@ This adapter supports any REST API by adapting the API payload in the adapter co
246
246
For convenience, support for common APIs is already built into this adapter and available via the `ApiPayloadConverter`. The following is a list of currently supported API providers:
247
247
248
248
-[Mailgun](https://www.mailgun.com)
249
+
-[AWS Simple Email Service (AWS JavaScript SDK v3)](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-ses/index.html)
249
250
250
251
If the provider you are using is not already supported, please feel free to open a PR.
251
252
@@ -277,6 +278,48 @@ const server = new ParseServer({
277
278
});
278
279
```
279
280
281
+
### Example for AWS Simple Email Service
282
+
283
+
This is an example for the AWS Simple Email Service client using the AWS JavaScript SDK v3:
This is an example of how the API payload can be adapted in the adapter configuration `apiCallback` according to a custom email provider's API specification.
0 commit comments