]> git.openstreetmap.org Git - rails.git/blobdiff - app/mailers/notifier.rb
Fix some deprecation warnings
[rails.git] / app / mailers / notifier.rb
index e705efb006756f09a6f5ff21ea8b7665689725cc..6e0c81a39177337b6f6ad57ddeb6b2d11e36644a 100644 (file)
@@ -1,4 +1,8 @@
 class Notifier < ActionMailer::Base
+  include ActionView::Helpers::AssetUrlHelper
+
+  self.delivery_job = ActionMailer::MailDeliveryJob
+
   default :from => Settings.email_from,
           :return_path => Settings.email_return_path,
           :auto_submitted => "auto-generated"
@@ -177,15 +181,15 @@ 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_path(user)
-    image = user&.image
-    if image&.file?
-      return image.path(:small)
+  def user_avatar_file(user)
+    avatar = user&.avatar
+    if avatar&.attached?
+      return avatar.variant(:resize => "50x50>").blob.download
     else
-      return Rails.root.join("app", "assets", "images", "users", "images", "small.png")
+      return File.read(Rails.root.join("app", "assets", "images", "avatar_small.png"))
     end
   end