Hello Makers, I have a scenario that works perfectly.
I’ve got 1 issue when there is no images available, scenario stops through the “Iterator” module. Actually, those images are not necessary, so I would like the scenario to continue running until the end.
Is there a simple way to bypass and finalize the scenario if there is no image available?
If you use an aggregator right after the iterator the scenario will continue even though there are empty values. But I do not know how you need to map your modules after that iterator so not sure if this is something you can use.
Issue is your sending emails after the iterator. If you send an empty value to the fields in the emails it will throw an error. Why do you want this scenario to continue?
Then you can just add a router before that iterator and move the email module that notifies you to that router. That way you will get the email notification even if the scenario doesnt progress after the iterator.