ActionMailer 和 Ramaze
是否可以在 Ramaze 这样的 Web 框架中使用 ActionMailer,还是需要使用 Rails?
Is it possible to use ActionMailer in a web framework like Ramaze, or do I need to use Rails?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在没有 Rails 的情况下轻松使用 ActionMailer。 我不熟悉 Ramaze,但这里有普通的 ruby,它应该很容易集成到您想要的任何框架中:
PATH/mailer.rb
然后将电子邮件模板放入以您的 ActionMailer 命名的目录中类
PATH/mailer/my_email.html.erb
查看 API 文档 了解更多配置选项,但这些是基础知识
You can use ActionMailer without Rails quite easily. I'm not familiar with Ramaze, but here's plain ruby, which should be easy to integrate into whatever framework you wish:
PATH/mailer.rb
Then put the email templates in a directory named after the your ActionMailer class
PATH/mailer/my_email.html.erb
Check out the API Docs for more configuration options, but those are the basics