I am writing a ZF Application that generates emails as certain actions occur, e.g. when a user signs up. My default mail settings are set in a Mail Resource plugin.
My question is, what's the best approach to managing the email templates? They could be text files, .ini, or in the code itself.
It seems to me that text files would be the easiest, but I'm always cautious about introducing another kind of file type that needs to be managed. Has anyone tried using .ini? How does this work?