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