I am trying to put an image on a mailer view using <%= image_tag("logo.png", :alt => "logo") %>
. This works using an online link so I think the problem is figuring out the path. When the email is sent, the image does not appear and only the text 'logo' is showing.
I have the logo image at project_name > app > assets > images > logo.png
.
I also have a public directory structured project_name > public > assets > image_and_js_files
What is the proper path I should use?