2019-08-13 20:20:26 +03:00
|
|
|
# Pleroma: A lightweight social networking server
|
2021-01-13 07:49:20 +01:00
|
|
|
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
|
2019-08-13 20:20:26 +03:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2019-08-31 19:08:56 +03:00
|
|
|
defmodule Pleroma.Workers.MailerWorker do
|
2019-08-31 21:58:42 +03:00
|
|
|
use Pleroma.Workers.WorkerHelper, queue: "mailer"
|
|
|
|
|
2019-08-13 20:20:26 +03:00
|
|
|
@impl Oban.Worker
|
2020-06-23 15:09:01 +03:00
|
|
|
def perform(%Job{args: %{"op" => "email", "encoded_email" => encoded_email, "config" => config}}) do
|
2019-08-31 19:08:56 +03:00
|
|
|
encoded_email
|
|
|
|
|> Base.decode64!()
|
|
|
|
|> :erlang.binary_to_term()
|
|
|
|
|> Pleroma.Emails.Mailer.deliver(config)
|
2019-08-14 21:42:21 +03:00
|
|
|
end
|
2019-08-13 20:20:26 +03:00
|
|
|
end
|