20 lines
821 B
Plaintext
20 lines
821 B
Plaintext
<% let expirationDate = null; %>
|
|
<p>Hello <%=user.name%>,</p>
|
|
<p>The following files have been assigned from <%=prevUser.name%> to you<%=prevUser.userId !== assignUser.userId ? ' by ' + assignUser.name : ''%>:</p>
|
|
<ul>
|
|
<% uploads.forEach((upload) => { %>
|
|
<% upload.files.forEach((file) => { %>
|
|
<li><%=file.name%> (<%=humanFileSize(file.size, true)%>)</li>
|
|
<%
|
|
});
|
|
|
|
if (upload.expirationDate !== null && (expirationDate === null || upload.expirationDate < expirationDate))
|
|
expirationDate = upload.expirationDate;
|
|
%>
|
|
<% }) %>
|
|
</ul>
|
|
<% if (expirationDate !== null) { %>
|
|
These files will be automatically deleted after <%=expirationDate.toLocaleString('en-US')%>
|
|
<% } %>
|
|
<p>You can download these files by logging in to <a href="<%=adminUrl%>"><%=adminUrl%></a></p>
|
|
<p>Cheers,<br />Recv</p> |