I am sending three arrays to the email action (first_name, last_name, rating). I have the email template listed as:
The email returns the following:
As you can see, the array is being sent just fine. Is there a way I can format the email so it appears like this:
I wouldn't even mind if the simplest way is to put them all on one line, but in the order shown.
Thanks.
<tr>
<td>
Name and Rating:
</td>
<td>
{first_name} {last_name} {rating}
</td>
</tr
The email returns the following:
Name and Rating: Firstname1, Firstname2, Firstname2 Lastname1, Lastname2, Lastname2 865,520 , 1500
As you can see, the array is being sent just fine. Is there a way I can format the email so it appears like this:
Firstname1 Lastname1 865
Firstname2 Lastname2 520
Firstname3 Lastname3 1500
I wouldn't even mind if the simplest way is to put them all on one line, but in the order shown.
Thanks.