Hello,
I'm afraid it is a stupid question, but I get stuck and I think it would be easier to ask you for help🙂
In this moment after filling "my" form a user and the admin get an e-mail with information from the form. The form is not the simplest one, either is the e-mail.
So I print simple information, like:
and use some conditional formatting as well, for example:
Exporting part of data from a form to a Google Sheet would make life easier, so I found right page in the FAQ section (click), I went trough it and it works nicely, but after changing field name and field ID from [Name] to GSheet[Name] I don't know how to call it in an email. {GSheet[Name]} doesn't work, GSheet{[Name]} and {Name} either. So: what should I do to make it work? And How should I call form fields in php?
Thank you in advance🙂
Maria
I'm afraid it is a stupid question, but I get stuck and I think it would be easier to ask you for help🙂
In this moment after filling "my" form a user and the admin get an e-mail with information from the form. The form is not the simplest one, either is the e-mail.
So I print simple information, like:
<tbody>
<tr><td><strong>Name:</strong></td><td>{Name}</td></tr>
......
</tbody>
and use some conditional formatting as well, for example:
<?php
$intention = 1;
if ($form->data['intention'] === '1')
print "order";
elseif ($form->data['intention'] === '2')
print "question about costs";
else
print "other";
?>
Exporting part of data from a form to a Google Sheet would make life easier, so I found right page in the FAQ section (click), I went trough it and it works nicely, but after changing field name and field ID from [Name] to GSheet[Name] I don't know how to call it in an email. {GSheet[Name]} doesn't work, GSheet{[Name]} and {Name} either. So: what should I do to make it work? And How should I call form fields in php?
Thank you in advance🙂
Maria