You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
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.