]> git.openstreetmap.org Git - rails.git/blobdiff - app/helpers/notifier_helper.rb
Force the font on every <p> tag
[rails.git] / app / helpers / notifier_helper.rb
index be01e5391a2a41e8672309474f0c32dbd017f994..23ee45648267d826139b8ae3fc690199e5c5696a 100644 (file)
@@ -19,7 +19,10 @@ module NotifierHelper
     )
   end
 
-  def apply_inline_css(html)
-    html.gsub /<p>/, '<p style="color: black; margin: 0.75em 0">'
+  def style_message(html)
+    # Because we can't use stylesheets in HTML emails, we need to inline the
+    # styles. Rather than copy-paste the same string of CSS into every message,
+    # we apply it once here, after the message has been composed.
+    html.gsub /<p>/, '<p style="color: black; margin: 0.75em 0; font-family: \'Helvetica Neue\', Arial, Sans-Serif">'
   end
 end