在我的user_mailer中,我正在尝试添加如下附件:
tempfile = File.new("#{Rails.root.to_s}/tmp/#{a.attachment_file_name}", "w")
tempfile << open(a.authenticated_url())
tempfile.puts
attachments[a.attachment_file_name] = File.read("#{Rails.root.to_s}/tmp/#{a.attachment_file_name}")
此方法:a.authenticated_url()
获取有效网址,确认
没有错误消息,但附加的文件已损坏且大小错误。
如何通过网址将文件附加到AcionMailer?
感谢