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

20 lines
599 B
Plaintext

<!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>
<div style="max-width: 600px;">
<div style="background-color: <%= Config.header_background_color %>; padding: 20px; text-align: center;">
<img src="<%= Config.organization_logo_url %>" style="margin: 0px auto; max-width: 400px; display: block; color: <%= Config.header_color %>" alt="<%= Config.organization_full_name %>" />
</div>
<%= yield %>
</div>
</body>
</html>