aboutsummaryrefslogtreecommitdiffstats
path: root/app/views/layouts/mailer.html.erb
blob: 977cbfe5b2f551fd12f24c3606fcbb4265f1f477 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html>
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <style>
      /* Email styles need to be inline */
      body {
        font-family: "Open Sans", sans-serif;
        font-size: 14px;
        line-height: 1.4;
        color: #4b4b4b;
				width: 800px;
      }
    </style>
  </head>

  <body>
		<%= image_tag 'mail-header.png' %>

    <%= yield %>
  </body>
</html>