##// END OF EJS Templates
trunk: revert r14300 (#16535, #20466, #20641)...
trunk: revert r14300 (#16535, #20466, #20641) Set a max width to html email content. Patch by Go MAEDA. git-svn-id: http://svn.redmine.org/redmine/trunk@14541 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r14159:d90de96def26
r14159:d90de96def26
Show More
mailer.html.erb
38 lines | 937 B | text/plain | TextLexer
Jean-Philippe Lang
Mailer:...
r864 <html>
<head>
<style>
Jean-Philippe Lang
Fixed: Entourage (and some old client) fails to correctly render notification styles (#1425)....
r1586 body {
font-family: Verdana, sans-serif;
font-size: 0.8em;
color:#484848;
}
Jean-Philippe Lang
Fixes headings style in html emails (#2739)....
r2404 h1, h2, h3 { font-family: "Trebuchet MS", Verdana, sans-serif; margin: 0px; }
h1 { font-size: 1.2em; }
h2, h3 { font-size: 1.1em; }
a, a:link, a:visited { color: #2A5685;}
a:hover, a:active { color: #c61a1a; }
a.wiki-anchor { display: none; }
Jean-Philippe Lang
Add links to attachments in new issue email notification (#12293)....
r11623 fieldset.attachments {border-width: 1px 0 0 0;}
Jean-Philippe Lang
Fixed: Entourage (and some old client) fails to correctly render notification styles (#1425)....
r1586 hr {
width: 100%;
height: 1px;
background: #ccc;
border: 0;
}
Jean-Philippe Lang
Add links to attachments in new issue email notification (#12293)....
r11623 span.footer {
Jean-Philippe Lang
Fixed: Entourage (and some old client) fails to correctly render notification styles (#1425)....
r1586 font-size: 0.8em;
font-style: italic;
}
Jean-Philippe Lang
Mailer:...
r864 </style>
</head>
<body>
Toshi MARUYAMA
not add empty header/footer to notification emails (#13482)...
r11491 <% if Setting.emails_header.present? -%>
Toshi MARUYAMA
Rails3: view: mail: html_safe for header and footer...
r8774 <span class="header"><%= Redmine::WikiFormatting.to_html(Setting.text_formatting, Setting.emails_header).html_safe %></span>
Toshi MARUYAMA
not add empty header/footer to notification emails (#13482)...
r11491 <% end -%>
Jean-Philippe Lang
Mailer:...
r864 <%= yield %>
<hr />
Toshi MARUYAMA
not add empty header/footer to notification emails (#13482)...
r11491 <% if Setting.emails_footer.present? -%>
Toshi MARUYAMA
Rails3: view: mail: html_safe for header and footer...
r8774 <span class="footer"><%= Redmine::WikiFormatting.to_html(Setting.text_formatting, Setting.emails_footer).html_safe %></span>
Toshi MARUYAMA
not add empty header/footer to notification emails (#13482)...
r11491 <% end -%>
Jean-Philippe Lang
Mailer:...
r864 </body>
</html>