我正在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 设置。