X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/ba627420a3e183fcee7ce38b2f68a0ff7663c647..6c202448ade514cd5ecca7175555011c851735e9:/app/mailers/notifier.rb diff --git a/app/mailers/notifier.rb b/app/mailers/notifier.rb index e705efb00..bd2c83b56 100644 --- a/app/mailers/notifier.rb +++ b/app/mailers/notifier.rb @@ -1,4 +1,6 @@ class Notifier < ActionMailer::Base + include ActionView::Helpers::AssetUrlHelper + default :from => Settings.email_from, :return_path => Settings.email_return_path, :auto_submitted => "auto-generated" @@ -177,7 +179,16 @@ class Notifier < ActionMailer::Base end def attach_user_avatar(user) - attachments.inline["avatar.png"] = File.read(user_avatar_file_path(user)) + attachments.inline["avatar.png"] = user_avatar_file(user) + end + + def user_avatar_file(user) + avatar = user&.avatar + if avatar&.attached? + return avatar.variant(:resize => "50x50>").blob.download + else + return File.read(user_avatar_file_path(user)) + end end def user_avatar_file_path(user) @@ -185,7 +196,7 @@ class Notifier < ActionMailer::Base if image&.file? return image.path(:small) else - return Rails.root.join("app", "assets", "images", "users", "images", "small.png") + return Rails.root.join("app", "assets", "images", "avatar_small.png") end end