I have process model which contains interfaces one after other and some of the system task , the process has actvity chaining now my requirement is after submission of 1st form we need to send mail and we kept that send email smart service in between , now if the email got failied flow shouls not stop ie the flow should be continued.
Discussion posts and replies are publicly visible
laxmipavanik0001 You can create a separate sub-process containing only the "Send Email" Smart Service. This sub-process would be responsible for handling the email sending logic. Within your main process, you can leverage the "Start Process" node configured in asynchronous mode. This initiates the sub-process to send the email after form submission, allowing your main process to continue its execution without waiting for the email to send.
Thank You