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

20 lines
422 B
Plaintext
Raw Permalink Normal View History

2024-04-13 10:22:40 +00:00
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<style>
/* Email styles need to be inline */
</style>
</head>
<body>
2024-05-29 15:47:31 +00:00
<% if @user.present? %>
<p><%= t(".greeting", name: @user.first_name) %></p>
<% else %>
<p><%= t(".greeting_without_name") %></p>
<% end %>
2024-04-13 10:22:40 +00:00
<%= yield %>
2024-04-14 19:01:32 +00:00
<%= t(".sign_off_html") %>
2024-04-13 10:22:40 +00:00
</body>
</html>