Reputation: 2339
I am trying to add a basic link_to tag to a mail view.
notification.html.erb:
<%= link_to image_tag('S200.gif'), root_path %>
error is undefined local variable or method 'root_path'
Not very sure why as same bit of code (different image only) works perfectly fine in a normal controller view. root_path is correctly set in routes.
Does the mail view prevent it ?
Upvotes: 1
Views: 949