Hello, I have form like the picture below:
β

β
I want create custom email body, but I don't know, how add repeater area to it. Please help meπ
β
β

β
I want create custom email body, but I don't know, how add repeater area to it. Please help meπ
β

Hi Webpiksel,
β
I would use a Custom PHP action before the Email action to loop through the Repeater data, build the HTML to display it and save that to the form data as a new item. Then you can display that whole item in the Email Body.
β
Bob
β
I would use a Custom PHP action before the Email action to loop through the Repeater data, build the HTML to display it and save that to the form data as a new item. Then you can display that whole item in the Email Body.
β
Bob
I wrote simple php code like this:
for ( $i=0; $i<10; $i++ ) {How put $wynik to email body?
$nazwa = "rodzaj{$i}";
$nazwa2 = "ilosc{$i}";
if (!empty($_POST[$nazwa]) ) {
$wynik .= 'Rodzaj auta: <strong>'.$_POST[$nazwa].'</strong><br/>';
$wynik .= 'IloΕΔ: <strong>'.$_POST[$nazwa2].'</strong><br/>';
};
};
Hi Webpiksel,
β
Please see Page 34 in the CFV6 manual.
β
Bob
β
Please see Page 34 in the CFV6 manual.
β
Bob
This topic is locked and no more replies can be posted.