Hello team,
I wanted to check whether the sent mail was delivered or not when it was sent from Outlook in UI Path.
Hello team,
I wanted to check whether the sent mail was delivered or not when it was sent from Outlook in UI Path.
You can check the outbox if the mail is there and check sent items to see if it is sent
cheers
The seceniro is that I wanted to send 400+ emails every time. It’s not possible to go and check every time in the outbox or send items. Is there any other way to find out with UiPath?
This solution will automate the checking process and make it feasible to handle a large number of emails without manually checking each one
Hi Davuluri_Manikumar,
Here you have two possible options.
1. Assuming that you have access to the mailbox, you can just check sent messages or if for any reason the message was not sent then you need to check the outboox.
2. Keep the Send Outlook Mail Message Activity inside of a TryCatch Activity, so that doesnt throw into an exception then it will surely send the email.
Or
If it’s throw any exeption it will go to CATCH block where choose the exception as system.exception and then you can use another send outlook message activity to re-send the email.
NOTE: In the Send Outlook Mail Message Activity try to setup the TimeoutMS property to 100000 (Default value is 30000)
Cheers!
Hi @Davuluri_Manikumar -
This topic might help you for checking is the mail deliver or not