<%- greeting %> <%- name %>,
<%- intro %>
<% if (locals.table) { %>
<% for (var column in table.data[0]) {%>
width="<%= table.columns.customWidth[column] %>"
<% } %>
<% if(locals.table.columns && locals.table.columns.customAlignment && locals.table.columns.customAlignment[column]) { %>
style="text-align:<%= table.columns.customAlignment[column] %>"
<% } %>
>
<%- column.charAt(0).toUpperCase() + column.slice(1) %>
|
<% } %>
<% for (var i in table.data) {%>
<% for (var column in table.data[i]) {%>
style="text-align:<%= table.columns.customAlignment[column] %>"
<% } %>
>
<%- table.data[i][column] %>
|
<% } %>
<% } %>
|
<% } %>
<% if (locals.action) { %>
<%- action.instructions %>
<% } %>
<% if (locals.goToAction) { %>
<% } %>
<%- outro %>
<%- signature %>,
<%- product.name %>
<% if (locals.action) { %>
If you’re having trouble clicking the "<%- action.button.text %>" button, copy and paste the URL below into your web browser:
<%- action.button.link %>
|
<% } %>
|