新增附件

ActionMailer 還允許附加檔案。

attachments['filename.jpg'] = File.read('/path/to/filename.jpg')

預設情況下,附件將使用 Base64 進行編碼。要更改此設定,你可以向附件方法新增雜湊。

attachments['filename.jpg'] = {
  mime_type: 'application/gzip',
  encoding: 'SpecialEncoding',
  content: encoded_content
}

你還可以新增內聯附件

attachments.inline['image.jpg'] = File.read('/path/to/image.jpg')