How can I send an automated email?

0
My requirement is to have a radio button for form acceptance. If the client selects 'Yes,' the process continues as expected. However, if the client selects 'No,' I need to send an automated email with the message 'Form Rejected.' How can I implement this logic after the 'No' option is clicked?
asked
2 answers
0

Which Email-module?

In most of the modules: By calling the SendMail-microflow.

answered
0

You can add an "on change" event on the radio button, for example, a microflow, the parameter of the microflow will be the object of the data source, you need to check the value of the boolean attribute that links to the radio button. In the true path, you need to build a logic for sending email depending on the email module you use in the project.

 

image.png

 

image.png

answered