##// END OF EJS Templates
Wrap text custom fields in the issue list (#8064)....
Wrap text custom fields in the issue list (#8064). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5332 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r4248:7e359d3d7e13
r5212:5823481d6ef0
Show More
mailer.text.html.erb
33 lines | 761 B | text/plain | TextLexer
/ app / views / layouts / mailer.text.html.erb
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
Fixed: Entourage (and some old client) fails to correctly render notification styles (#1425)....
r1586 hr {
width: 100%;
height: 1px;
background: #ccc;
border: 0;
}
.footer {
font-size: 0.8em;
font-style: italic;
}
Jean-Philippe Lang
Mailer:...
r864 </style>
</head>
<body>
Eric Davis
Add a Email Header setting. Useful for adding delimiters to every email....
r4248 <span class="header"><%= Redmine::WikiFormatting.to_html(Setting.text_formatting, Setting.emails_header) %></span>
Jean-Philippe Lang
Mailer:...
r864 <%= yield %>
<hr />
Jean-Philippe Lang
Makes wiki text formatter pluggable....
r1953 <span class="footer"><%= Redmine::WikiFormatting.to_html(Setting.text_formatting, Setting.emails_footer) %></span>
Jean-Philippe Lang
Mailer:...
r864 </body>
</html>