image_url not working within action mailer (Ruby on rails)

1.3k Views Asked by At

I added the following in my production.rb environment file.

config.action_mailer.default_url_options = {host: "domain.com"}

In my view:

<%= tag("img", src: image_url("logo.png"))  %>

However, when I look at the path in my email, I see a image_path, not URL.

http:///assets/logo.png

What am I doing wrong?

3

There are 3 best solutions below

2
On BEST ANSWER

This is how it works in my application. Try this

<%= image_tag(attachments['logo.png'].url, style: 'margin: 5px') %>
0
On

Try asset_path instead of image_url in production email views.

0
On

You need to specify config.action_mailer.asset_host = "domain.com" in production.rb. Then use image_tag in your mailer view.