56 lines
1.4 KiB
Plaintext
56 lines
1.4 KiB
Plaintext
<%if (format === 'text') { %>
|
|
|
|
Dear Cloudron Admin,
|
|
|
|
<% for (var i = 0; i < apps.length; i++) { -%>
|
|
The app '<%= apps[i].app.manifest.title %>' installed at <%= apps[i].app.fqdn %> has an update available.
|
|
|
|
<%= apps[i].app.manifest.title %> v<%= apps[i].updateInfo.manifest.version %> changes:
|
|
<%= apps[i].updateInfo.manifest.changelog %>
|
|
|
|
<% } -%>
|
|
|
|
Update now at <%= webadminUrl %>
|
|
|
|
Powered by https://cloudron.io
|
|
|
|
Sent at: <%= new Date().toUTCString() %>
|
|
|
|
<% } else { %>
|
|
|
|
<center>
|
|
|
|
<img src="<%= cloudronAvatarUrl %>" width="128px" height="128px"/>
|
|
|
|
<h3>Dear <%= cloudronName %> Admin,</h3>
|
|
|
|
<br/>
|
|
|
|
<div style="width: 650px; text-align: left;">
|
|
<% for (var i = 0; i < apps.length; i++) { -%>
|
|
<p>
|
|
The app '<%= apps[i].app.manifest.title %>' installed at <a href="https://<%= apps[i].app.fqdn %>"><%= apps[i].app.fqdn %></a> has an update available.
|
|
</p>
|
|
|
|
<h5><%= apps[i].app.manifest.title %> v<%= apps[i].updateInfo.manifest.version %> changes:</h5>
|
|
<%- apps[i].changelogHTML %>
|
|
|
|
<br/>
|
|
<% } -%>
|
|
|
|
<p>
|
|
<br/>
|
|
<center><a href="<%= webadminUrl %>">Update now</a></center>
|
|
<br/>
|
|
</p>
|
|
</div>
|
|
|
|
<div style="font-size: 10px; color: #333333; background: #ffffff;">
|
|
Powered by <a href="https://cloudron.io">Cloudron</a>.<br/>
|
|
Sent at: <%= new Date().toUTCString() %>
|
|
</div>
|
|
|
|
</center>
|
|
|
|
<% } %>
|