This will NOT E-mail the user who unregisters, but it will E-mail the webmaster that the user unregistered. And gives the username and userid.
After applying Firefly's hack, open member2.php and search for:
Code:
$DB_site->query("DELETE FROM session WHERE userid=$bbuserinfo[userid]");
eval("standarderror(\"<br><br>You've just been erased.<br><br>\");");
And replace that with:
Code:
$DB_site->query("DELETE FROM session WHERE userid=$bbuserinfo[userid]");
mail("$webmasteremail", "User $bbuserinfo[username] Unregistered", "Username $bbuserinfo[username] \n UserID $bbuserinfo[userid] \n Unregistered", "From: $webmasteremail\r\n");
eval("standarderror(\"<br><br>You've just been deleted.<br><br>\");");
You will get an E-mail to/from webmaster email with msg
username: <the user>
userid: <the userid>
unregistered!
I tested it on my board (2.2.5) and it works. But I used username "tester". I am not sure how to handle (and if it is needed) usernames with weird characters. Maybe somebody can test?
And maybe now someone can make addition so user can give up a reason, and the webmaster will also get: reason: <reason>