当前位置:  开发笔记 > 前端 > 正文

在混合任务中使用Bamboo发送电子邮件

如何解决《在混合任务中使用Bamboo发送电子邮件》经验,为你挑选了1个好方法。

我想从Bamboo发送一个混合任务的电子邮件.这是任务的代码:

defmodule Mix.Tasks.SendEmails.Reminder do
  use Mix.Task
  import Mix.Ecto
  import Ecto.Query

  def run(_args) do
    Foobar.welcome_email |> MyApp.Mailer.deliver_now
  end
end

defmodule Foobar do
  import Bamboo.Email

  def welcome_email do
    new_email
    |> to("foo@example.com")
    |> from("me@example.com")
    |> subject("Welcome!!!")
    |> html_body("Welcome")
    |> text_body("welcome")
  end
end

当我运行这个混合任务时,我得到以下日志输出:

21:20:26.829 [debug] Sending email with Bamboo.LocalAdapter:

%Bamboo.Email{assigns: %{}, bcc: [], cc: [], from: {nil, 
"me@example.com"}, headers: %{}, html_body: "Welcome",
private: %{}, subject: "Welcome!!!", text_body: "welcome", to: 
[nil: "foo@example.com"]}

** (exit) exited in: GenServer.call(Bamboo.SentEmail, {:update, 
    #Function<2.18788267/1 in Bamboo.SentEmail.push/1>}, 5000)
    ** (EXIT) no process: the process is not alive or there's no 
    process currently associated with the given name, possibly 
    because its application isn't started
    (elixir) lib/gen_server.ex:729: GenServer.call/3
    lib/bamboo/sent_email.ex:109: Bamboo.SentEmail.push/1
    lib/bamboo/mailer.ex:121: Bamboo.Mailer.deliver_now/3
    lib/mix/tasks/send_emails.reminder.ex:30: anonymous fn/2 in Mix.Tasks.SendEmails.Reminder.run/1
    (elixir) lib/enum.ex:1755: Enum."-reduce/3-lists^foldl/2-0-"/3
    lib/mix/tasks/send_emails.reminder.ex:20: Mix.Tasks.SendEmails.Reminder.run/1
    (mix) lib/mix/task.ex:294: Mix.Task.run_task/3
    (mix) lib/mix/cli.ex:58: Mix.CLI.run_task/2
    (elixir) lib/code.ex:370: Code.require_file/2

我怎样才能解决这个问题?Bamboo在凤凰应用中运行良好.我无法让它在混合任务中运行.



1> Jonas Dellin..:

发生此错误是因为bamboo未启动.

启动单个应用程序

在您的情况下,使用Application.ensure_all_started/2启动特定的应用程序:

Application.ensure_all_started(:bamboo)

启动所有应用程序

在某些情况下,您可能希望启动所有应用程序: Mix.Tasks.App.Start将启动mix.exs配置中定义的所有应用程序:

defmodule Mix.Tasks.SendEmails.Reminder do
  use Mix.Task
  import Mix.Ecto
  import Ecto.Query

  def run(_args) do
    Mix.Tasks.App.Start.run([]) # This will start all apps
    Foobar.welcome_email |> MyApp.Mailer.deliver_now
  end
end

推荐阅读
ERIK又
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有