8

我定义了一个自定义交付方法,并将其加载到初始化程序中:

ActionMailer::Base.add_delivery_method :custom, CustomDelivery

然后我添加config.action_mailer.delivery_method = :custom到 development.rb 和 production.rb。

但是当我想发送电子邮件时

UserMailer.authorize(user).deliver

它因与 SMTP ( ArgumentError: A sender (Return-Path, Sender or From) required to send a message from /Users/me/.rbenv/versions/1.9.3-p0/lib/ruby/gems/1.9.1/gems/mail-2.4.4/lib/mail/network/delivery_methods/smtp.rb:99:in deliver!') 相关的内容而失败——我不想使用它。

为什么它不采用自定义交付方式?

更新:当我从控制台尝试时,我注意到以下内容:

irb(main):019:0> UserMailer.delivery_method
=> :custom

irb(main):020:0> UserMailer.authorize(user).delivery_method 
=> #<Mail::SMTP:0x00000100bdc738 @settings={:address=>"localhost", :port=>25, :domain=>"localhost.localdomain", :user_name=>nil, :password=>nil, :authentication=>nil, :enable_starttls_auto=>true, :openssl_verify_mode=>nil, :ssl=>nil, :tls=>nil}>

(顺便说一句,我在我的项目中搜索了“SMTP”并且出现了 0 次)

4

2 回答 2

2

使用您的自定义交付类配置 action_mailer delivery_method:

config.action_mailer.delivery_method = MyCustomDelivery

该类应该实现交付!Mail采用gem实例的实例方法。像这样的东西:

class MyCustomDelivery
  def deliver!(mail)
    puts "MAIL FROM: #{mail.from}"
    puts "RCPT TO: #{mail.to}"
    puts "DATA: #{mail.to_s}"
  end
end
于 2014-08-28T13:28:22.707 回答
-1

你配置过 SMTPenvironment.rb吗?这是我的样子。

ActionMailer::Base.smtp_settings = {
  :domain          => 'gmail.com',
  :address         => 'smtp.gmail.com',
  :port            => 587,
  :tls             => true,
  :authentication  => :plain,
  :charset         => 'utf-8',
  :user_name       => ENV['GMAIL_USERNAME'],
  :password        => ENV['GMAIL_PASSWORD'],
  :enable_starttls_auto => true
}
于 2012-07-15T14:53:22.950 回答