saucy/app/views/layouts/mailer.html.erb

20 lines
501 B
Plaintext
Raw Normal View History

<!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>
2022-06-25 12:48:46 +00:00
<div style="max-width: 600px;">
<div style="background-color: #041952; padding: 20px">
2022-09-27 23:18:19 +00:00
<img src="<%= image_url("ansol-logo-white.png") %>" style="margin: 0px auto; max-width: 400px; display: block; color: white" alt="ANSOL" />
2022-06-25 12:48:46 +00:00
</div>
<%= yield %>
</div>
</body>
</html>