Hi everybody!
I think my question is very easy for you.
I want to use the values of a field in the thanks - emails. I know, in HTML I do this with {fieldname}
for example: Dear {name}, thank you ....
But now i need PHP in the email but i don't know, how to submit the value of "name" in my variable $name.
I hope you can help me!
I think my question is very easy for you.
I want to use the values of a field in the thanks - emails. I know, in HTML I do this with {fieldname}
for example: Dear {name}, thank you ....
But now i need PHP in the email but i don't know, how to submit the value of "name" in my variable $name.
I hope you can help me!
Hi 321mark,
In ChronoForms v4 The form data is in the $form->data array so you can use, for example
Bob
In ChronoForms v4 The form data is in the $form->data array so you can use, for example
<?php echo "Dear {$form->data['name']},"; ?>
Bob
This topic is locked and no more replies can be posted.