Sai Rohith Reddy
Sai Rohith Reddy

Reputation: 21

AWS SES Email Receiving SDK for Spring Boot

We have a Spring Boot application, that's required to listen to incoming emails from AWS SES, retrieve the email and persist it to the database. I've come across documentation to send out the email from Java, but I couldn't find any specific documentation to listen to an email from the application via SES and get the latest reply.

Currently I am using S3 as the storage and planning to write integration with SNS to listen and read from S3 whenever an email has come using Spring Cloud.

Is there any much better alternative to this method, where I can just let the application listen to the reply to the email that was sent?

Upvotes: 2

Views: 516

Answers (1)

smac2020
smac2020

Reputation: 10704

Look at this method:

https://sdk.amazonaws.com/java/api/latest/software/amazon/awssdk/services/ses/SesClient.html#getSendStatistics--

See if that method provides information that you can use.

Upvotes: 1

Related Questions