Can we monitor email arrived or not using webservice?

Hi Everyone,

My project need to start only when a case id generated email received into outlook. If mail not received then bot should not stop and keep running. It must start resume soon email arrives.

Can we achieve by using web service or if anyone achieved that could you please share xaml how to use this concept?

Thanks,
Ulaga

can the below logic work for you

while (true)
{
checkforNewMail
if (mailarrived)
{
InvokeWorkflow to process the mail
}
MarkMailAsRead
}

3 Likes

Thank you for your idea.Yes it works and just thought is there any webservice to use this scenario.