简体   繁体   中英

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?

"but I couldn't find any specific documentation to listen to an email from the application via SES and get the latest reply"

AWS SES does not support listening to incoming emails. It's used to send email messages. Having said that, 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.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM