If i use [repeat][/repeat] like this

<table>
[repeat]
<tr><td>[node:title]</td></tr>
[/repeat]
</table>

in the mail the html rendered will be

<table>
<tr><td>lorem</td></tr><br />
<tr><td>lorem</td></tr><br />
<tr><td>lorem</td></tr><br />
...
</table>

<br/> shouldn't have been there

In newsletter.module on line 752
I change
$body = implode('<br/>', $items);
by
$body = implode('', $items);

Comments

ParisLiakos’s picture

Status: Active » Fixed

You are right, thanks
replaced it with a newline.commit here

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.