Unify Mastodon and Twitter follow implementations using CommonAPI
[akkoma] / lib / pleroma / emails / mailer.ex
index a8bd70b6e6b4fce234bb072d10ad3a56acb3cf5b..f7e3aa78b3ccc0f7b219dfbdce46d1019c5e482f 100644 (file)
@@ -1,7 +1,13 @@
 # Pleroma: A lightweight social networking server
-# Copyright © 2017-2018 Pleroma Authors <https://pleroma.social/>
+# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
 # SPDX-License-Identifier: AGPL-3.0-only
 
 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