我使用 Rails 3 + Postmark-Rails。
起初,我在 postmarkapp.com 上创建了帐户来获取我的 api 密钥。
我通过电子邮件链接激活了我的签名 [例如,“vitalyp@dot.com”]
-- 之后,我将它添加到 application.rb
config.action_mailer.delivery_method = :postmark
config.action_mailer.postmark_settings = { :api_key => "fdcb..." }
我使用这种方法发送电子邮件:
class UserMailer < ActionMailer::Base
default :from => "vitalyp@dot.com"
def do_my_mail(to, subj)
mail(:to => to, :subject => subj)
end
我收到此错误:
Postmark::InvalidMessageError
Sender signature not defined for From address.
有任何想法吗?