Files
cloudron-box/src/mail_templates/user_added.ejs
T

50 lines
1.1 KiB
Plaintext
Raw Normal View History

2016-01-20 12:35:42 +01:00
<%if (format === 'text') { %>
2017-01-17 15:34:50 +01:00
Dear <%= cloudronName %> Admin,
2016-01-20 12:35:42 +01:00
2017-01-17 15:34:50 +01:00
A new user with email <%= user.alternateEmail || user.email %> was added to <%= cloudronName %>.
2016-01-20 12:35:42 +01:00
<% if (inviteLink) { %>
2016-03-09 18:37:02 -08:00
As requested, this user has not been sent an invitation email.
To set a password and perform any configuration on behalf of the user, please use this link:
2016-01-20 13:14:19 +01:00
<%= inviteLink %>
2016-03-09 18:37:02 -08:00
2016-01-20 12:35:42 +01:00
<% } %>
2017-01-17 15:34:50 +01:00
Powered by https://cloudron.io
2016-01-20 12:35:42 +01:00
<% } else { %>
2017-01-17 15:34:50 +01:00
<center>
<img src="<%= cloudronAvatarUrl %>" width="128px" height="128px"/>
<h3>Dear <%= cloudronName %> Admin,</h3>
<p>
A new user with email <%= user.alternateEmail || user.email %> was added to <%= cloudronName %>.
</p>
<% if (inviteLink) { %>
<p>
As requested, this user has not been sent an invitation email.<br/>
<br/>
<a href="<%= inviteLink %>">Set a password and perform any configuration on behalf of the user</a>
</p>
2016-01-20 12:35:42 +01:00
<% } %>
2017-01-17 15:34:50 +01:00
<br/>
<br/>
<div style="font-size: 10px; color: #333333; background: #ffffff;">
Powered by <a href="https://cloudron.io">Cloudron</a>.
</div>
</center>
<img src="https://analytics.cloudron.io/piwik.php?idsite=2&rec=1&e_c=CloudronEmail&e_a=userAdded" style="border:0" alt="" />
<% } %>