ruby 在Rails中处理电子邮件附件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ruby 在Rails中处理电子邮件附件相关的知识,希望对你有一定的参考价值。

# message is Mail::Message
# see http://www.rubydoc.info/github/mikel/mail/Mail/Message

message.attachments.each do |attch|
  f = Tempfile.new(attch.filename, Rails.root.join('tmp'))
  puts "  - Save #{attch.filename} to #{f.path}"
  begin
    f.binmode
    f.write attch.decoded
  ensure
    file.close
    file.unlink # deletes the temp file
  end
end

以上是关于ruby 在Rails中处理电子邮件附件的主要内容,如果未能解决你的问题,请参考以下文章

如何在 ActionMailer 中将云文件添加为电子邮件附件

在 mandrill 模板中使用 Ruby/rails 变量

使用 Ruby(在 Rails 上)确认链接创建

Mandrill 在 Rails 上发送电子邮件 ruby

ruby Rails中配置并发送邮件

使用 ruby​​ 邮件 gem 获取电子邮件正文而不获取附件