From 8513045381bfe2bf7b9696804600ca521b753187 Mon Sep 17 00:00:00 2001 From: Robin Ward Date: Mon, 23 Mar 2015 14:12:11 -0400 Subject: [PATCH] Include user title in email notifications --- app/helpers/application_helper.rb | 1 + app/views/email/_post.html.erb | 6 +++++- lib/email/styles.rb | 1 + 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb index 909c563401e..3edce092e64 100644 --- a/app/helpers/application_helper.rb +++ b/app/helpers/application_helper.rb @@ -7,6 +7,7 @@ require_dependency 'configurable_urls' require_dependency 'mobile_detection' require_dependency 'category_badge' require_dependency 'global_path' +require_dependency 'canonical_url' module ApplicationHelper include CurrentUser diff --git a/app/views/email/_post.html.erb b/app/views/email/_post.html.erb index 8cacf66f993..b5447c68edc 100644 --- a/app/views/email/_post.html.erb +++ b/app/views/email/_post.html.erb @@ -5,7 +5,11 @@ - <%= post.user.username %>
+ <%= post.user.username %> + <%- if post.user.title.present? %> + <%= post.user.title %> + <% end %> +
<%= l post.created_at, format: :short_no_year %> diff --git a/lib/email/styles.rb b/lib/email/styles.rb index 1257cc004d1..46495aef3ea 100644 --- a/lib/email/styles.rb +++ b/lib/email/styles.rb @@ -75,6 +75,7 @@ module Email style('.previous-discussion', 'font-size: 17px; color: #444;') style('.notification-date', "text-align:right;color:#999999;padding-right:5px;font-family:'lucida grande',tahoma,verdana,arial,sans-serif;font-size:11px") style('.username', "font-size:13px;font-family:'lucida grande',tahoma,verdana,arial,sans-serif;color:#3b5998;text-decoration:none;font-weight:bold") + style('.user-title', "font-size:13px;font-family:'lucida grande',tahoma,verdana,arial,sans-serif;text-decoration:none;font-weight:bold;margin-left:7px;") style('.post-wrapper', "margin-bottom:25px;") style('.user-avatar', 'vertical-align:top;width:55px;') style('.user-avatar img', nil, width: '45', height: '45')