Hello there,
When the process goes through Send email step, it breaks.
Is there a way to add the plug-in Send Email as an action?
I want to continue the full process after having the email sent.
here is a hint
Thank you.
Hello there,
When the process goes through Send email step, it breaks.
Is there a way to add the plug-in Send Email as an action?
I want to continue the full process after having the email sent.
here is a hint
Thank you.
Put your condition inside a branch. That way, once the branch has completed, control returns to the trunk.
Well in your case, you have setup a condition which send an email if its true or execute the SOAP plugin when it is false.
If you wan to send an email when it is true and execute the SOAP plugin no matter what then you need to
Hope that helps.
Dear @Phil and @hamelj,
Thank you for your responses,
The process of having my condition inside a brunch works only if false
Here is another image for better elaboration.
Basically, on step 7, I check the return from the soap âPath to an image on the serverâ if it exists.
A local variable becomes 1 if exist and 0 otherwise.
In step 9, I simply check the value of my variable if = 0, (true - image not found on server) then run the script where (an image is forced to my PDF) and send a notification email that the soap didnât work as expected.
It is very important that the workflow process continues until the end regardless of my conditionâs results.
Thank you for your guidance.
It doesnât matter what the result of your condition is in Step 9: since the condition is inside a branch, the process flow ALWAYS returns to the trunk (unless an error occurs in one of your tasks, obviously).
It is working, Thank you :).