ภายใน Rails 2.3.3 มีการนำเสนอบั๊กภายใน ActionMailer คุณสามารถดูตั๋วได้ที่นี่Ticket # 2340# ได้รับการแก้ไขใน 2-3 เสถียรและมาสเตอร์ดังนั้นจะได้รับการแก้ไขใน 3.x และ 2.3.6
สำหรับการแก้ไขปัญหาภายใน 2.3. * คุณสามารถใช้รหัสที่ให้ไว้ในความคิดเห็นของตั๋ว:
module ActionMailer
class Base
def perform_delivery_smtp(mail)
destinations = mail.destinations
mail.ready_to_send
sender = (mail['return-path'] && mail['return-path'].spec) || Array(mail.from).first
smtp = Net::SMTP.new(smtp_settings[:address], smtp_settings[:port])
smtp.enable_starttls_auto if smtp_settings[:enable_starttls_auto] && smtp.respond_to?(:enable_starttls_auto)
smtp.start(smtp_settings[:domain], smtp_settings[:user_name], smtp_settings[:password],
smtp_settings[:authentication]) do |smtp|
smtp.sendmail(mail.encoded, sender, destinations)
end
end
end
end