I want to find the action mailer corresponding to a specific mailer view. It seems that there are no mailer action with the name of the mailer view's name. How can I find the mailer action in this case?
p.s I am working on Rails code not written by me.
There was a mailer action (with different name from the view), which rendered the view. The action didn't used the view's name explicitly when sending arguments to
renderfunction. The action received the view's name as a parameter, and then sent the parameter as an argument to therenderfunction. The parameters to the action were sent from a model. This is why I couldn't find the view's name inside themailerfolder