Reputation: 21
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
Reputation: 10704
Look at this method:
See if that method provides information that you can use.
Upvotes: 1