Continue on error option is not there in Send SMTP mail message activity.Is there any ay to ignore the error in SMTP mail activity?
You can use a Try Catch block to handle errors and proceed with the workflow even if the email sending fails. Place the Send SMTP Mail Message activity inside the “Try” block and add the necessary error-handling logic in the “Catch” block.
Regards
-
Enclose the activity in a Try block:Place the “Send SMTP Mail Message” activity within a “Try” block in your workflow.
-
Add a Catch block: After the “Try” block, add a “Catch” block to catch any exceptions that may occur during the execution of the “Send SMTP Mail Message” activity.
-
Handle the exception (Optional):Inside the “Catch” block, you can add activities to handle the exception, log the error, or take other appropriate actions. You can also leave it empty if you just want to continue the workflow without any specific action.
Cheers!!