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