我試圖使用Ruby on Rails的附件發送電子郵件。 我遵循the ActionMailer網站的指示。通過SendGrid使用Ruby on Rails發送帶有附件的電子郵件
def welcome(recipient)
@account = recipient
attachments['file.csv'] = File.read('/path/to/users.csv')
mail(:to => recipient,
:bcc => ["[email protected]", "[email protected]"],
:subject => "Sending attachment")
end
我能接收電子郵件,但沒有附件,我試圖附加CSV文件,但我得到了一個名爲「NONAME」文件作爲附件
僅當使用沒有SendGrid的ActionMailer時,也會發生這種情況。 – corbin