mirror of
https://git.pleroma.social/pleroma/pleroma.git
synced 2025-04-25 20:34:09 +00:00
18 lines
561 B
Elixir
18 lines
561 B
Elixir
# Pleroma: A lightweight social networking server
|
|
# Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
defmodule Pleroma.Workers.MailerWorker do
|
|
use Oban.Worker, queue: :background
|
|
|
|
@impl true
|
|
def perform(%Job{args: %{"op" => "email", "encoded_email" => encoded_email, "config" => config}}) do
|
|
encoded_email
|
|
|> Base.decode64!()
|
|
|> Plug.Crypto.non_executable_binary_to_term()
|
|
|> Pleroma.Emails.Mailer.deliver(config)
|
|
end
|
|
|
|
@impl true
|
|
def timeout(_job), do: :timer.seconds(5)
|
|
end
|