rails:在mail_to链接中包含html

Mar*_*kus 7 html mailto email ruby-on-rails

我正在寻找一种在mail_to链接中包含html的方法,以便我可以自动在此电子邮件的正文中包含横幅.

谢谢你的任何提示

马库斯

Sim*_*tti 13

Rails 3

mail_to "email@example.com", raw(image_tag("/path/to/banner.png"))
Run Code Online (Sandbox Code Playgroud)

Rails 2.x

mail_to "email@example.com", image_tag("/path/to/banner.png")
Run Code Online (Sandbox Code Playgroud)

请参阅mail_to帮助程序的文档.