cannery/lib/cannery_web/templates/layout/email.html.heex

20 lines
705 B
Plaintext
Raw Normal View History

2022-02-25 21:35:12 -05:00
<html>
<head>
<title>
<%= @email.subject %>
</title>
</head>
2022-05-05 21:07:02 -04:00
<body style="padding: 2em; color: rgb(31, 31, 31); background-color: rgb(220, 220, 228); font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif; text-align: center;">
2022-02-25 21:35:12 -05:00
<%= @inner_content %>
2022-05-05 21:07:02 -04:00
<hr style="margin: 2em auto; border-width: 1px; border-color: rgb(212, 212, 216); width: 100%; max-width: 42rem;" />
2022-02-25 21:35:12 -05:00
2022-05-05 21:47:22 -04:00
<a style="color: rgb(31, 31, 31);" href={Routes.live_url(Endpoint, HomeLive)}>
2022-02-25 21:35:12 -05:00
<%= dgettext(
"emails",
2023-02-25 15:47:37 -05:00
"This email was sent from Cannery, the self-hosted firearm tracker website."
2022-02-25 21:35:12 -05:00
) %>
</a>
</body>
</html>