tabletop-companion/app/views/layouts/mailer.text.erb

10 lines
167 B
Plaintext

<% if @user.present? %>
<%= t(".greeting", name: @user.first_name) %>
<% else %>
<%= t(".greeting_without_name") %>
<% end %>
<%= yield %>
<%= t(".sign_off") %>