这是 Heroku 日志中的错误:
2013-06-23T04:57:20.501850+00:00 app[worker.1]: [Worker(host:e681c9a7-c85b-4ca9-af9c-e9bea92be8f0 pid:2)] Class#send failed with Postmark::InvalidMessageError: Sender signature not defined for From address. - 2 failed attempts
这是我的邮件。
class UserMailer < ActionMailer::Base
default from: "postman@writeonpure.com"
...
end
这是我在 Postmark 中定义的发件人签名。
这是应用程序.rb:
# Postmark
config.action_mailer.delivery_method = :postmark
config.action_mailer.postmark_settings = { :api_key => ENV["POSTMARK_API_KEY"] }
事情是……邮件是在开发中发送的,而不是在暂存中发送的。