forked from AkkomaGang/akkoma
Fix email mix task on OTP releases
Closes pleroma#1548
This commit is contained in:
parent
964b4d82a0
commit
8fda6303ba
1 changed files with 2 additions and 3 deletions
|
@ -1,5 +1,6 @@
|
|||
defmodule Mix.Tasks.Pleroma.Email do
|
||||
use Mix.Task
|
||||
import Mix.Pleroma
|
||||
|
||||
@shortdoc "Simple Email test"
|
||||
@moduledoc File.read!("docs/administration/CLI_tasks/email.md")
|
||||
|
@ -18,8 +19,6 @@ def run(["test" | args]) do
|
|||
email = Pleroma.Emails.AdminEmail.test_email(options[:to])
|
||||
{:ok, _} = Pleroma.Emails.Mailer.deliver(email)
|
||||
|
||||
Mix.shell().info(
|
||||
"Test email has been sent to #{inspect(email.to)} from #{inspect(email.from)}"
|
||||
)
|
||||
shell_info("Test email has been sent to #{inspect(email.to)} from #{inspect(email.from)}")
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue