Code: Select all
Hi {USERNAME}
{MESSAGE}
{EMAIL_SIG}
Any ideas why?
Code: Select all
Hi {USERNAME}
{MESSAGE}
{EMAIL_SIG}
You can't just add vars to the email template; it needs to know what those vars refer to. I haven't tested this but try adding the var to
/includes/acp_email.php
around line 205.Code: Select all
$template_data = array(
'USERNAME' => $row['username'],
'CONTACT_EMAIL' => phpbb_get_board_contact($config, $phpEx),
'MESSAGE' => html_entity_decode($message, ENT_COMPAT),
);
No such thing. Those are template variables. They are created by each script as they need them.cancertalk wrote: ↑Sat Jul 27, 2024 11:08 am Sorry, I thought that {USERNAME} was a variable in the system, like {MESSAGE} and {EMAIL_SIG}