[Credo] Remove parentesis on argument-less functions
[akkoma] / lib / pleroma / emails / mailer.ex
index 8d12641f20bd91ca713bd1e9fbd4ba296955d2e9..f7e3aa78b3ccc0f7b219dfbdce46d1019c5e482f 100644 (file)
@@ -4,4 +4,10 @@
 
 defmodule Pleroma.Mailer do
   use Swoosh.Mailer, otp_app: :pleroma
+
+  def deliver_async(email, config \\ []) do
+    Pleroma.Jobs.enqueue(:mailer, __MODULE__, [:deliver_async, email, config])
+  end
+
+  def perform(:deliver_async, email, config), do: deliver(email, config)
 end