I am trying to edit the confirmation_instructions.html.erb file to address the new user by first name instead of email.
Current the beginning of the file reads...
Hi, <%= @email %>,
How do I add an instance variable @first_name to the controller/mailer?
I ran rails generate devise:controllers users, but I just don't see any .rb files where I could add instance variables to confirmation mailer (if there is one)
Thanks