我創建的Rails應用一個Mail
對象,並希望它挑郵件設置:如何在創建自定義郵件時使用Rails郵件設置?
original = UserMailer.new_registration
original.deliver# Does the job
custom = Mail.new(original.to_s)
custom.deliver # Fails: OpenSSL::SSL::SSLError: hostname does not match the server certificate
顯然定製Mail
對象不拾取Rails的設置。
謝謝。一直在我的頭上敲這個。 – csi