14 lines
501 B
Text
14 lines
501 B
Text
|
<% if @user.profile.name %>
|
||
|
<p>Hi <%= @user.profile.name %>,</p>
|
||
|
<% else %>
|
||
|
<p>Hello,</p>
|
||
|
<% end %>
|
||
|
|
||
|
<% if @resource.created_at.to_date == Date.today %>
|
||
|
<p>Thanks for signing up on <a href='https://commitchange.com'></a><%= Settings.general.name %></a>! We're excited to get you started.</p>
|
||
|
<% end %>
|
||
|
|
||
|
<p>In order to verify your account, please <strong><a href='<%= confirmation_url(@user, :confirmation_token => @token) %>'>confirm your email address</a></strong></p>
|
||
|
|
||
|
<%= render 'emails/sig' %>
|