Hi
Did we try with SEND EXCHANGE MAIL activity
Instead of outlook mail activity
Where we need to pass some input values to the property of that activity
It will work even if your machine doesn’t have outlook application configured
Refer these threads for what values to be used in the exchange activity
Or
You can follow these steps to validate whether it has sent the mail or not
-
Use a TRY CATCH activity where in try block use a GET MAIL MESSAGE activity and change the mailbox property as “Sent Items” and change the top value as “1” and get the output as out_mailmessages
-
Then use a IF condition like this
oyt_mailmessage(0).Subject.ToString(“your subject”)
If true it will go to THEN block there leave it empty and if false it will go to ELSE where use a THROW activity and mention like this is in it New BusinessRuleException(“not sent mail”)
So this will now go to CATCH block where you can try sending mail with exchange activity as mentioned above
Hope this would help you resolve this
Cheers @wenar58700