I have an email action that is disabled by default. If a particular textarea is filled in, I want to enable that action/send that email.
I took a look at the Email GH action, and from what I can see, it only looks for a particular string, but what I need to check is to be sure that the field isn't blank.
The field is called technology. This is my first day with ChronoForms, but I'm assuming I would create a Custom Code action for the On Submit event that looks something like this:
But as you can tell, I'm not really sure to go about interacting with ChronoForms data.
If I can get some of this conditional stuff working, I'll buy a license in a heartbeat. I just spent $40 on a WordPress form building plugin which is very polished and easy to use, but not nearly as flexible as ChronoForms.
I took a look at the Email GH action, and from what I can see, it only looks for a particular string, but what I need to check is to be sure that the field isn't blank.
The field is called technology. This is my first day with ChronoForms, but I'm assuming I would create a Custom Code action for the On Submit event that looks something like this:
$technology = [get technology field data];
if($technology !== '') {
[enable technology email action];
}
But as you can tell, I'm not really sure to go about interacting with ChronoForms data.
If I can get some of this conditional stuff working, I'll buy a license in a heartbeat. I just spent $40 on a WordPress form building plugin which is very polished and easy to use, but not nearly as flexible as ChronoForms.