I’ve added a mailer/notifier to my app and now want to add more features which would work with more than one controller. Any suggestions on whether I should use a single Notifier for all mailers:
rails generate mailer Notifier
or use a separate mailer for each feature/controller that needs it:
rails generate mailer AccidentNotifier
rails generate mailer IncidentNotifier
I’m tempted to start with a single Notifier and only break them out if complexity warrants it; still, I’m curious to see what others would do in this situation.