Make columns in an email with a subform
I have a code that allows me to send an email with a subform and add a horizontal columa to all data:
Example:
Entry.1 = " Precio" "Link"
Entry.2 = " Precio" "Link",
Entry.3 = " Precio " Link"
I would like to make the data in the subform were vertical but when I add the data does not work that are not organized properly.
What happens:
E1. Precio
E2. Precio
E1. Link
E2. Link
I need:
E1. Precio
E1. Link
E2. Precio
E2. Link
Anyone know how to change my code:
Precio = "$";
Enviousd = "<br>" + "$";
Link = "$";
for each entry in CM.Articulos
{
Precio = Precio + entry.Precio + "<br>" + "<br>" + "<br>" + "<br>" + "<br>";
Link = Link + entry.Link_del_producto + "<br>" + "<br>";