I dont become all field results in the email and have no idea meanwhile π
My Form have ...
RadioGroup with name 'Einheiten',
Checkbox with name 'Haken_SW_Vertrag',
RadioGroup with name 'Zahlungsbedingungen'
In my Email Template ...
the result is ...
So the 1st radiogroup is unreachable, any idea ?
I checked the forum and found the "Handle Arrays" Event but i dont understand it, how to manage this and how to change my email template.
Sorry for my english (maybe), answers in german will be welcome too π
My Form have ...
RadioGroup with name 'Einheiten',
Checkbox with name 'Haken_SW_Vertrag',
RadioGroup with name 'Zahlungsbedingungen'
In my Email Template ...
<?php
$varEinheiten = $form->data['Einheiten'];
$varWartungsvertrag = $form->data['Haken_SW_Vertrag'];
$varZahlungsbedingungen = $form->data['Zahlungsbedingungen'];
echo $varEinheiten; echo '<br>';
echo $varWartungsvertrag; echo '<br>';
echo $varZahlungsbedingungen; echo '<br>';
?>
<br>
{Einheiten}<br>
{Haken_SW_Vertrag}<br>
{Zahlungsbedingungen}<br>
the result is ...
<br>1<br>Nachnahme<br><br>50<br>1<br>Nachnahme<br>
So the 1st radiogroup is unreachable, any idea ?
I checked the forum and found the "Handle Arrays" Event but i dont understand it, how to manage this and how to change my email template.
Sorry for my english (maybe), answers in german will be welcome too π