hello I couldn't solve problems on chchronoforms6 repeater area didn't send all values on email. Please ananyone give me solusolution tnx
Forums
chronoforms 6 repeater didn't send all data to email
Hi,
The latest update has a repeater demo form with an email action, did you try it ?
Best regards
The latest update has a repeater demo form with an email action, did you try it ?
Best regards
hi that's really a great news will try It and let know If there any issues . Thanks!
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
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
Yes, you'd have to use a Loop to build your email text. Set it to return as var.
Data source: {data:groupname}
Content:
Do things this way instead of letting it automatically make your email so you can make it how you want.
Data source: {data:groupname}
Content:
Item: {var:loopname.row.item} <br>Then in the email use {var:loopname}
Qty: {var:loopname.row.quantity}<br><br>
Do things this way instead of letting it automatically make your email so you can make it how you want.
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.
Not Loop event, just Loop.
This topic is locked and no more replies can be posted.