我定义了一个自定义交付方法,并将其加载到初始化程序中:
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 次)