i have this particular table in my form
this is the generated email template part
all work fine in db save action (with a personal array handler) but in the email report those data don't show
<table width="100%">
<td>Name</td>
<td>Surname</td>
<td>C.F.</td>
</tr>
<tr>
<td><input type="text" name="cda1[0]" /></td>
<td><input type="text" name="cda1[1]" /></td>
<td><input type="text" name="cda1[2]" /></td>
</tr>
<tr>
<td><input type="text" name="cda2[0]" /></td>
<td><input type="text" name="cda2[1]" /></td>
<td><input type="text" name="cda2[2]" /></td>
</tr>
</table>
this is the generated email template part
<table border="1" width="100%">
<td>Name</td>
<td>Surname</td>
<td>C.F.</td>
</tr>
<tr>
<td>{cda1.0}</td>
<td>{cda1.1}</td>
<td>{cda1.2}</td>
</tr>
<tr>
<td>{cda2.0}</td>
<td>{cda2.1}</td>
<td>{cda2.2}</td>
</tr>
</table>
all work fine in db save action (with a personal array handler) but in the email report those data don't show