In my project I have multiple modules as:
1. Become sponsor
2. Become exhibitor
3. Call for papers
4. Etc
In these modules I have a form for users to fill and submit data. It's like a registration form. If registration is succeeded, I send "welcome message" to user's email. This email template is common for all situations!
So, I need a common function, method to call in order to send that email. I don't want to write it in each action. So that, in that method I could get instance of mailer, user culture etc, like in a basic module action.
Please help, brothers!