##// END OF EJS Templates
Add doube quotes to user_name and password in email.yml.example (#2927)....
Add doube quotes to user_name and password in email.yml.example (#2927). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2564 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r2404:1c2cdedf19fe
r2496:04abeda1d739
Show More
layout.text.html.rhtml
32 lines | 646 B | text/html+ruby | RhtmlLexer
/ app / views / mailer / layout.text.html.rhtml
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>
<%= 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>