X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/d102c9aaf478a4bad52a72b1b72470ba35ba464e..75a49786f8bcb76715cf4009ba807a844baae282:/app/mailers/notifier.rb diff --git a/app/mailers/notifier.rb b/app/mailers/notifier.rb index e705efb00..b12599981 100644 --- a/app/mailers/notifier.rb +++ b/app/mailers/notifier.rb @@ -1,4 +1,8 @@ -class Notifier < ActionMailer::Base +class Notifier < ApplicationMailer + include ActionView::Helpers::AssetUrlHelper + + self.delivery_job = ActionMailer::MailDeliveryJob + default :from => Settings.email_from, :return_path => Settings.email_return_path, :auto_submitted => "auto-generated" @@ -173,19 +177,19 @@ class Notifier < ActionMailer::Base end def attach_project_logo - attachments.inline["logo.png"] = File.read(Rails.root.join("app", "assets", "images", "osm_logo_30.png")) + attachments.inline["logo.png"] = File.read(Rails.root.join("app/assets/images/osm_logo_30.png")) 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_path(user) - image = user&.image - if image&.file? - return image.path(:small) + def user_avatar_file(user) + avatar = user&.avatar + if avatar&.attached? + avatar.variant(:resize => "50x50>").blob.download else - return Rails.root.join("app", "assets", "images", "users", "images", "small.png") + File.read(Rails.root.join("app/assets/images/avatar_small.png")) end end