chronoforms 6 repeater didn't send all data to email

Display ChronoForms 6 repeater data in a readable email format.

Overview

The repeater data was being sent as a single, unformatted JSON string in the email.
Use a Loop action to format the data, then reference the loop variable in the email body to display each item and its corresponding value on separate lines.

Answered
ChronoForms v6
ya yadoo 06 Mar, 2019
hello I couldn't solve problems on chchronoforms6 repeater area didn't send all values on email. Please ananyone give me solusolution tnx
Max_admin Max_admin 06 Mar, 2019
Hi,

The latest update has a repeater demo form with an email action, did you try it ?

Best regards
Max, ChronoForms developer
ChronoMyAdmin: Database administration within Joomla, no phpMyAdmin needed.
ChronoMails simplifies Joomla email: newsletters, logging, and custom templates.
ya yadoo 06 Mar, 2019
1 Likes
hi that's really a great news will try It and let know If there any issues . Thanks!
ya yadoo 06 Mar, 2019
hello max,

i saw the the new update and demo its sending all values now and its great but the email form is all in one row like the following:

Item: {"1":"qq","2":"ll","3":"cc","4":"pp"}
quanitiy: {"1":"11","2":"45","3":"33","4":"10"}

is there any possible way to display like

item: qq
quanitiy: 11

item: LL
quanitiy: 45

or side by side: item: qq quantity:11

thanks for your cooperation
he healyhatman 07 Mar, 2019
Answer
1 Likes
Yes, you'd have to use a Loop to build your email text. Set it to return as var.
Data source: {data:groupname}
Content:
Item: {var:loopname.row.item} <br>
Qty: {var:loopname.row.quantity}<br><br>
Then in the email use {var:loopname}
Do things this way instead of letting it automatically make your email so you can make it how you want.
ya yadoo 07 Mar, 2019
hi thanks for replying should i include this code snippets, is it inside the email body? already i add the loop event and i give it my data provider.
ya yadoo 07 Mar, 2019
healyhatman thanks its solved bro!!
This topic is locked and no more replies can be posted.