I have a user controller that I use for my front-end of my Codeigniter
application that handles the registration, login, forgot-password, view (profiles) pages and I am trying to decide on where the best place is for a function to go for a send email function. If something is best suited for a library function or if it should be placed elsewhere.
I ask this because I am really trying to focus on the Single Responsibility Principle
and Polymorphism
inside of OOP.
Can someone maybe give some of their best advice and/or suggestions on how I could come to a good place?
You can write common code for sending email in your own helper (called "general_helper.php") in application/helpers.
Then add "general_helper" in config/autoload.php. So, this helper file will available in all places. Helper may/may not have class. So if you did not use class in helper, you can call the sendmail function directly as