0

在 webapps 中,我正在生成一个 ics 字符串,用于通过邮件发送邀请。

我正在使用 icalendar gem 生成 ics 字符串,但我需要使用 Content-Type 发送:文本/日历。

我如何设置 ActionMailer 来做到这一点?

谢谢

4

1 回答 1

0

您可以在文档中查看如何执行此操作:

ActionMailer在 Default Hash 部分

喜欢

class Notifier < ActionMailer::Base
  def some_message(recipient)
    content-type "your type"
  end
end
于 2012-10-26T16:39:41.710 回答