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

35 lines
749 B
Plaintext
Raw Normal View History

<%if (format === 'text') { %>
2016-09-28 15:10:17 -07:00
Hi <%= user.displayName || user.username || user.alternateEmail || user.email %>,
2016-10-13 11:14:17 +02:00
Welcome to <%= cloudronName %>!
2016-10-13 11:14:17 +02:00
To get started, activate your account by visiting the following page:
<%= setupLink %>
<% if (invitor && invitor.email) { %>
2016-10-13 11:14:17 +02:00
Your <%= invitor.email %>
<% } %>
<% } else { %>
2016-10-13 11:14:17 +02:00
<center>
<h3>Hi <%= user.displayName || user.username || user.alternateEmail || user.email %>,</h3>
2016-10-13 11:14:17 +02:00
<img src="<%= cloudronAvatarUrl %>"/>
<h1>Welcome to <%= cloudronName %>!</h1>
<p>
To get started, activate your account by visiting the following page:<br/>
<a href="<%= setupLink %>"><%= setupLink %></a>
</p>
<p>
<% if (invitor && invitor.email) { %>
Your <%= invitor.email %>
<% } %>
</p>
<% } %>