I'm trying to put details from a multiplier into an email.
For example, one of my multipliers uses the array "devices".
On submit my debugger event shows
TIA
Mark
For example, one of my multipliers uses the array "devices".
On submit my debugger event shows
[devices] => Arrayand the relevant part of my template in my email event has
(
[0] => Array
(
[type] => 0
[make] => Mi
[model] => Fone
[id] => 3
[parent] => 621
)
[id] => 3
)
<table>which seems (to me) to be what the FAQ https://www.chronoengine.com/faqs/70-chronoforms/cfv5/5245-how-can-i-use-the-multiplier-in-cfv5 says, but nonetheless that same debugger event shows that the email is prepared as
<thead><tr><th width="15%">Device</th><th width="35%">Make</th><th width="35%">Model</th></tr>
</thead>
<tbody>{repeater:devices}
<tr>
<td>{type}</td>
<td>{model}</td>
<td>{make}</td>
</tr>
{/repeater}
</tbody>
</table>
<table>What have I done wrong?
<thead><tr><th width="15%">Device</th><th width="35%">Make</th><th width="35%">Model</th></tr>
</thead>
<tbody>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
TIA
Mark