It's a convention in rails to name your mailers with a Mailer suffix, and is also common to name the class after the recipient (e.g. User, Admin). So UserMailer seems a reasonable choice.
9 lines
184 B
Text
9 lines
184 B
Text
<p><%= t(".greeting") %></p>
|
|
|
|
<p><%= t(".created", :site_url => Settings.server_url) %></p>
|
|
|
|
<p><%= t(".confirm") %></p>
|
|
|
|
<p><%= link_to @url, @url %></p>
|
|
|
|
<p><%= t(".welcome") %></p>
|