Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+3 votes
1.7k views
in Plugins by

Any sign of a plugin that lets you wrap all emails in custom html templates? 

I'm looking to do something similar to what twitter has for it's notifications.

Or if not, how could I go about doing this with an advanced theme? (i am not a developer, not sure how to create my own plugins.. yet!)

Thanks!

Q2A version: 1.5
by
It would be nice to see this plugin. Starting plugin development is not that easy. I started two months ago, see code with comments at: https://github.com/echteinfachtv This could give you a basic start. However, overrides of functions is not implemented.
by
have you found any solution on that @MarkP
by
Unfortunately no.
by
I'll probably do what I did with phpbb, change the PHP code that generates the email header "Content-Type" to send text/html and change the qa-lang-email file to a String containing the wrapped HTML

1 Answer

+1 vote
by

You can write a plugin which overrides the function qa_send_email(...) from qa-app-emails.php.

...