如何使用完整的 url 路径将图像添加到 Rails 电子邮件中
我想将图像添加到电子邮件模板,但不想内联添加它们,而是添加它们在托管应用程序的服务器上的位置的完整路径。
如何在 Rails 3 操作邮件程序中执行此操作?
I want to add images to an email template but don't want to add them inline but with the full path to their location on the server where the application is hosted.
How can I do this in Rails 3 action mailer?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在您的控制器操作中,
user_mailer 类中添加以下内容。
在 notifier.html.erb 视图中的
in your controller action
add below in your user_mailer class
in your notifier.html.erb view.