Files
cloudron-box/src/mail_templates/welcome_user.ejs

49 lines
1.1 KiB
Plaintext
Raw Normal View History

<%if (format === 'text') { %>
2017-01-17 15:34:50 +01:00
Dear <%= user.displayName || user.username || user.alternateEmail || user.email %>,
2016-10-13 11:14:17 +02:00
Welcome to <%= cloudronName %>!
2016-10-13 16:01:50 -07:00
To get started, activate your account:
<%= setupLink %>
<% if (invitor && invitor.email) { %>
2016-10-13 16:01:50 -07:00
You are receiving this email because you were invited by <%= invitor.email %>.
<% } %>
2016-10-13 16:01:50 -07:00
2017-01-17 15:34:50 +01:00
Powered by https://cloudron.io
2016-10-13 16:01:50 -07:00
<% } else { %>
2016-10-13 11:14:17 +02:00
<center>
2016-10-13 12:37:25 +02:00
<img src="<%= cloudronAvatarUrl %>" width="128px" height="128px"/>
2016-10-13 11:14:17 +02:00
2016-10-13 11:56:23 +02:00
<h3>Hi <%= user.displayName || user.username || user.alternateEmail || user.email %>,</h3>
<h2>Welcome to <%= cloudronName %>!</h2>
2016-10-13 11:14:17 +02:00
<p>
2016-10-13 11:56:23 +02:00
To get started, <a href="<%= setupLink %>">activate your account</a>.
2016-10-13 11:14:17 +02:00
</p>
2016-10-13 16:01:50 -07:00
<br/>
<br/>
<div style="font-size: 10px; color: #333333; background: #ffffff;">
Powered by <a href="https://cloudron.io">Cloudron</a>.
<br/>
<% if (invitor && invitor.email) { %>
You are receiving this email because you were invited by <%= invitor.email %>.
<% } %>
</div>
</center>
<img src="https://analytics.cloudron.io/piwik.php?idsite=2&rec=1&e_c=CloudronEmail&e_a=welcomeUser" style="border:0" alt="" />
<% } %>