I'm trying to create a basic backend Java springboot job that will do the following:
- Run every x minutes
- Pull all unread emails from a specific outlook mailbox
- Perform some task with the data in the emails
I've been looking around for some sample Java code to get me through step 2, but I haven't found anything too useful. I will keep looking, but does anyone have anything handy? Again, this is a backend job that doesn't have any UI or login for authentication.
Thanks