* */ public function sendRegister($login, $fullname, $email) { global $conf; if (empty($conf['registernotify'])) { return false; } $trep = [ 'NEWUSER' => $login, 'NEWNAME' => $fullname, 'NEWEMAIL' => $email, ]; return $this->send( $conf['registernotify'], 'new_user', $login, 'registermail', $trep ); } }