Implemented issue #718 - Change font and font size in emails (templates).
This commit is contained in:
parent
3fa12b73ae
commit
16594b8245
2 changed files with 87 additions and 87 deletions
|
@ -156,93 +156,7 @@ Check if string is a complete html document. If not, add head and css styles.
|
||||||
|
|
||||||
return html if html =~ /<html>/i
|
return html if html =~ /<html>/i
|
||||||
|
|
||||||
css = "font-family:'Helvetica Neue', Helvetica, Arial, Geneva, sans-serif; font-size: 12px;"
|
Rails.configuration.html_email_body.sub('###html###', html)
|
||||||
|
|
||||||
html = <<HERE
|
|
||||||
<!DOCTYPE html>
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
|
|
||||||
<style type="text/css">
|
|
||||||
body {
|
|
||||||
width: 90% !important;
|
|
||||||
-webkit-text-size-adjust: 90%;
|
|
||||||
-ms-text-size-adjust: 90%;
|
|
||||||
#{css};
|
|
||||||
}
|
|
||||||
img {
|
|
||||||
outline: none;
|
|
||||||
text-decoration: none;
|
|
||||||
-ms-interpolation-mode: bicubic;
|
|
||||||
}
|
|
||||||
a img {
|
|
||||||
border: none;
|
|
||||||
}
|
|
||||||
table td {
|
|
||||||
border-collapse: collapse;
|
|
||||||
}
|
|
||||||
table {
|
|
||||||
border-collapse: collapse;
|
|
||||||
mso-table-lspace: 0pt;
|
|
||||||
mso-table-rspace: 0pt;
|
|
||||||
border: none;
|
|
||||||
table-layout: auto;
|
|
||||||
display: block;
|
|
||||||
width: 100%;
|
|
||||||
overflow: auto;
|
|
||||||
word-break: keep-all;
|
|
||||||
}
|
|
||||||
p, table, div, td {
|
|
||||||
max-width: 600px;
|
|
||||||
}
|
|
||||||
table,
|
|
||||||
pre,
|
|
||||||
blockquote {
|
|
||||||
margin: 0 0 16px;
|
|
||||||
}
|
|
||||||
td, th {
|
|
||||||
padding: 7px 12px;
|
|
||||||
border: 1px solid hsl(0,0%,87%);
|
|
||||||
}
|
|
||||||
th {
|
|
||||||
font-weight: bold;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
tbody tr:nth-child(even) {
|
|
||||||
background: hsl(0,0%,97%);
|
|
||||||
}
|
|
||||||
col {
|
|
||||||
width: auto;
|
|
||||||
}
|
|
||||||
p {
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
code {
|
|
||||||
border: none;
|
|
||||||
background: hsl(0,0%,97%);
|
|
||||||
white-space: pre-wrap;
|
|
||||||
}
|
|
||||||
blockquote {
|
|
||||||
padding: 8px 12px;
|
|
||||||
border-left: 5px solid #eee;
|
|
||||||
}
|
|
||||||
pre {
|
|
||||||
padding: 12px 15px;
|
|
||||||
font-size: 13px;
|
|
||||||
line-height: 1.45;
|
|
||||||
background: hsl(0,0%,97%);
|
|
||||||
white-space: pre-wrap;
|
|
||||||
border-radius: 3px;
|
|
||||||
border: none;
|
|
||||||
overflow: auto;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
<head>
|
|
||||||
<body style="#{css}">#{html}</body>
|
|
||||||
</html>
|
|
||||||
HERE
|
|
||||||
|
|
||||||
html
|
|
||||||
end
|
end
|
||||||
|
|
||||||
=begin
|
=begin
|
||||||
|
|
86
config/initializers/html_email_style.rb
Normal file
86
config/initializers/html_email_style.rb
Normal file
|
@ -0,0 +1,86 @@
|
||||||
|
|
||||||
|
Rails.application.config.html_email_css_font = "font-family:'Helvetica Neue', Helvetica, Arial, Geneva, sans-serif; font-size: 12px;"
|
||||||
|
|
||||||
|
Rails.application.config.html_email_body = <<HERE
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
|
||||||
|
<style type="text/css">
|
||||||
|
body {
|
||||||
|
width: 90% !important;
|
||||||
|
-webkit-text-size-adjust: 90%;
|
||||||
|
-ms-text-size-adjust: 90%;
|
||||||
|
#{Rails.application.config.html_email_css_font};
|
||||||
|
}
|
||||||
|
img {
|
||||||
|
outline: none;
|
||||||
|
text-decoration: none;
|
||||||
|
-ms-interpolation-mode: bicubic;
|
||||||
|
}
|
||||||
|
a img {
|
||||||
|
border: none;
|
||||||
|
}
|
||||||
|
table td {
|
||||||
|
border-collapse: collapse;
|
||||||
|
}
|
||||||
|
table {
|
||||||
|
border-collapse: collapse;
|
||||||
|
mso-table-lspace: 0pt;
|
||||||
|
mso-table-rspace: 0pt;
|
||||||
|
border: none;
|
||||||
|
table-layout: auto;
|
||||||
|
display: block;
|
||||||
|
width: 100%;
|
||||||
|
overflow: auto;
|
||||||
|
word-break: keep-all;
|
||||||
|
}
|
||||||
|
p, table, div, td {
|
||||||
|
max-width: 600px;
|
||||||
|
}
|
||||||
|
table,
|
||||||
|
pre,
|
||||||
|
blockquote {
|
||||||
|
margin: 0 0 16px;
|
||||||
|
}
|
||||||
|
td, th {
|
||||||
|
padding: 7px 12px;
|
||||||
|
border: 1px solid hsl(0,0%,87%);
|
||||||
|
}
|
||||||
|
th {
|
||||||
|
font-weight: bold;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
tbody tr:nth-child(even) {
|
||||||
|
background: hsl(0,0%,97%);
|
||||||
|
}
|
||||||
|
col {
|
||||||
|
width: auto;
|
||||||
|
}
|
||||||
|
p {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
code {
|
||||||
|
border: none;
|
||||||
|
background: hsl(0,0%,97%);
|
||||||
|
white-space: pre-wrap;
|
||||||
|
}
|
||||||
|
blockquote {
|
||||||
|
padding: 8px 12px;
|
||||||
|
border-left: 5px solid #eee;
|
||||||
|
}
|
||||||
|
pre {
|
||||||
|
padding: 12px 15px;
|
||||||
|
font-size: 13px;
|
||||||
|
line-height: 1.45;
|
||||||
|
background: hsl(0,0%,97%);
|
||||||
|
white-space: pre-wrap;
|
||||||
|
border-radius: 3px;
|
||||||
|
border: none;
|
||||||
|
overflow: auto;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
<head>
|
||||||
|
<body style="#{Rails.application.config.html_email_css_font}">###html###</body>
|
||||||
|
</html>
|
||||||
|
HERE
|
Loading…
Reference in a new issue