27 lines
663 B
ERB
27 lines
663 B
ERB
<% if @body_text.present? %>
|
|
<%= @body_text %>
|
|
<% else %>
|
|
<%= t("mailers.tournament_invite.hello") %>
|
|
|
|
<%= t(
|
|
"mailers.tournament_invite.body_text",
|
|
inviter: @invited_by.name,
|
|
tournament: @tournament.name,
|
|
club: @club.name,
|
|
assignment: @invitation.scope_label
|
|
) %>
|
|
<% if @invitation.note.present? %>
|
|
|
|
<%= @invitation.note %>
|
|
<% end %>
|
|
|
|
<%= t("mailers.tournament_invite.cta") %>:
|
|
<%= @invite_url %>
|
|
|
|
<%= t("mailers.tournament_invite.steps") %>
|
|
<%= t("mailers.tournament_invite.expiry", date: @expires_on) %>
|
|
<%= t("mailers.tournament_invite.ignore") %>
|
|
<% end %>
|
|
|
|
<%= t("mailers.tournament_invite.footer", email: MatchLiveTv.privacy_controller_email) %>
|