5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
# File 'lib/teobit_mailer/mailer_helper.rb', line 5
def mailer_wrapper(&block)
raw <<-EOS
<html lang="ru">
<head>
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
</head>
<body>
<table style="border-collapse: collapse; color: #333; width: 100%; font-style: normal; font-variant: normal; font-weight: normal; font-size: 14px; line-height: 25px; font-family: arial; background-image: url(http://web.teobit.ru/bg.jpg); background-repeat: repeat; padding: 0; border: 0;">
<tbody>
<tr>
<td style="vertical-align: top; padding: 35px 20px 5px;">
<table style="border-collapse: collapse; color: #333; width: 80%; border-top-color: #99cc33; border-top-style: solid; font-style: normal; font-variant: normal; font-weight: normal; font-size: 14px; line-height: 25px; font-family: arial; margin: 0 auto; padding: 0; border-width: 5px 0 0;">
<thead style="background-color: #fff;"><tr><td style="vertical-align: top; height: 36px; padding: 0;"></td></tr></thead>
<tfoot>
<tr>
<td style="vertical-align: top; border-top-width: 5px; border-top-color: #3399cc; border-top-style: solid; padding: 15px 7%;">
<a href="//web.teobit.ru/" style="background-repeat: no-repeat; background-image: url(http://web.teobit.ru/logo.png); padding-left: 30px; color: #333;"> ТеоБит</a>
</td>
</tr>
</tfoot>
<tbody style="background-color: #fff;">
<tr>
<td style="vertical-align: top; padding: 0 7%;">
#{capture(&block)}
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</body>
</html>
EOS
end
|