What is the right way to embed image into email using Rails?

后端 未结 6 1621
后悔当初
后悔当初 2020-12-02 16:23

What is the right way to embed an image into email using Rails?

6条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-12-02 17:13

    After a lot of research i have found very cleaner way to embed image in email. Just add following line in production.rb and development.rb

    config.action_mailer.asset_host = 'YOUR HOST URL'
    

    In your view embed image by using following code.

    <%= image_tag('My Web Site Logo.png') %>
    

    Note: Make sure to update YOUR HOST URL and My Web Site Logo.png in above code.

    For basic details of usage of Action Mailer, please refer to ActionMailer::Base.

提交回复
热议问题