I am trying to send mail with with image. I checked with letter_opener gem and it's OK but when i receive mail in my gmail account, the image is missing. image src showing the path https://ci6.googleusercontent.com/proxy/RLRFotvE91M7TbTVT8Todcjnjv9ymRfVHwxGRJpV-OcuAhGKbUeokSngMmgp74L6wYKN0jiiGZjbRP7StvXK3KWL7ttUSg=s0-d-e1-ft#http://localhost:3000/uploads/image/17/gost1.jpg but it should be only http://localhost:3000/uploads/image/17/gost1.jpg and it will be okay. The image tag like:
<%= image_tag(@image_for_artist) %><br>
development.erb=>
config.action_controller.asset_host = 'localhost:3000'
config.action_mailer.asset_host = 'http://localhost:3000'
Why image tag not showing absolute path instead of ci6.googleusercontent.com path.