2018-05-13 07:33:10 +00:00
|
|
|
<p>Hello <%=user.name%>,</p>
|
|
|
|
<p>The following files have been uploaded:</p>
|
2018-04-28 13:00:30 +00:00
|
|
|
<ul>
|
|
|
|
<% upload.files.forEach((file) => { %>
|
2018-05-13 07:33:10 +00:00
|
|
|
<li><%=file.name%> (<%=humanFileSize(file.size, true)%>)</li>
|
2018-04-28 13:00:30 +00:00
|
|
|
<% }) %>
|
|
|
|
</ul>
|
2018-05-02 21:01:29 +00:00
|
|
|
<% if (upload.expirationDate !== null) { %>
|
|
|
|
These files will be automatically deleted after <%=upload.expirationDate.toLocaleString('en-US')%>
|
|
|
|
<% } %>
|
2018-05-13 07:33:10 +00:00
|
|
|
<p>You can download these files by logging in to <a href="<%=adminUrl%>"><%=adminUrl%></a></p>
|
2018-04-28 13:00:30 +00:00
|
|
|
<p>Cheers,<br />Recv</p>
|