I am currently struggeling with a change that was made in the original phpBB code a while ago...changing the way of template for mails being handled.
Before that change I was passing a custom message (admins have been able to modify the standard mail sent to users before being sent out via the ACP) to the messenger instance by using the following code:
Code: Select all
$messenger->msg = $data['message'];
How can I achieve that with the new way mail templates are handled as an object?
Code: Select all
$this->tpl_obj = &$this->tpl_msg[$template_lang . $template_file];
Thanks for your help

Cheers
th23