Good morning,
I'm trying to send a list of issues every day in HTML format. And I'm getting the proper list, but at the beginning of email I get quite a lot of blank spaces, that I need to scroll down, to see my list. Does anyone have idea, what I'm doing wrong?
The content of my emails is:
<table BORDER >
<tr>
<th>Ref</th>
<th>Title</th>
<th>Parent name</th>
<th>Label</th>
<th>Assigne</th>
<th>Due date</th>
</tr>
{{#lookupIssues}}
<tr>
<td><a href={{url}}" > {{key}} </a> </td>
<td>{{summary}}</td>
<td>{{parent.summary}}</td>
<td>{{labels}}</td>
<td>{{assignee.displayName}}</td>
<td>{{dueDate}}</td>
</tr>
{{/}}
</table>
Actually - I have found this solution and it works:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.