Then you can do it yourselfopen-your-eyes wrote: ↑Sat Jun 16, 2018 5:24 pm I don't think it is too much code to write for doing this.
Then you can do it yourselfopen-your-eyes wrote: ↑Sat Jun 16, 2018 5:24 pm I don't think it is too much code to write for doing this.
Open includes/ucp/ucp_register.php and findopen-your-eyes wrote: ↑Sat Jun 16, 2018 12:44 am I want a copy of the registration email to be sent to the admin. Here is how it was done in phpBB2:Thank you.Code: Select all
OPEN includes/usercp_register.php FIND include($phpbb_root_path . 'includes/emailer.'.$phpEx); $emailer = new emailer($board_config['smtp_delivery']); $emailer->from($board_config['board_email']); $emailer->replyto($board_config['board_email']); AFTER, ADD // Send email to the admin $emailer->bcc($board_config['board_email']);
$messenger->to($data['email'], $data['username']);
$messenger->bcc($config['board_email'], $data['username']);