Hello,
i have in my form a field for the salutation Mr and Mrs. Depending on what was chosen a different confirmation mail should be sent.
I have a bit of PHP and the Event Switcher tried but unfortunately still no success.
In the Email Template i have tried
Thanks for your help!
Thilo
i have in my form a field for the salutation Mr and Mrs. Depending on what was chosen a different confirmation mail should be sent.
I have a bit of PHP and the Event Switcher tried but unfortunately still no success.
In the Email Template i have tried
<?php
if({drp_salutation} =='Herr'){
echo "Sehr geehrter Herr";
}
else
{
echo "Sehr geehrte Frau";
}
?>
Thanks for your help!
Thilo
I have my solution lightbulb
The right way was to add this code to the email template.
<?php
if( isset($form->data['drp_salutation']) && $form->data['drp_salutation'] == 'Herr' ) {
echo '<tr><td></td><td>hello world!</td></tr>';
}else{
echo '<tr><td></td><td>hello duck!</td></tr>';
}
?>
The right way was to add this code to the email template.
<?php
if( isset($form->data['drp_salutation']) && $form->data['drp_salutation'] == 'Herr' ) {
echo '<tr><td></td><td>hello world!</td></tr>';
}else{
echo '<tr><td></td><td>hello duck!</td></tr>';
}
?>
This topic is locked and no more replies can be posted.