X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/91a37235ac748df7dc241b215790d6cbecd652f3..dcd55590709ab18657cdbe5ab4ddd5e360ba6b43:/app/mailers/notifier.rb?ds=inline diff --git a/app/mailers/notifier.rb b/app/mailers/notifier.rb index 4509f1011..b12599981 100644 --- a/app/mailers/notifier.rb +++ b/app/mailers/notifier.rb @@ -1,6 +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" @@ -175,7 +177,7 @@ 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) @@ -185,9 +187,9 @@ class Notifier < ActionMailer::Base def user_avatar_file(user) avatar = user&.avatar if avatar&.attached? - return avatar.variant(:resize => "50x50>").blob.download + avatar.variant(:resize => "50x50>").blob.download else - return File.read(Rails.root.join("app", "assets", "images", "avatar_small.png")) + File.read(Rails.root.join("app/assets/images/avatar_small.png")) end end