Skip to content

Instantly share code, notes, and snippets.

View codeboxr's full-sized avatar
🎯
Focusing

Codeboxr codeboxr

🎯
Focusing
View GitHub Profile
@codeboxr
codeboxr / gist:5820826
Last active December 18, 2015 17:49
Sending Customized User Registration Email Alert to Admin in Moodle - Step1 From My blog post: http://codeboxr.com/blogs/sending-customized-user-registration-email-alert-to-admin-in-moodle
$string['emailconfirmationtoadmin'] = 'Hi {$a->supportname},
A new account \'{$a->firstname}\' has been requested at \'{$a->sitename}\'
{$a->admindata}';
@codeboxr
codeboxr / gist:5820819
Last active December 18, 2015 17:49
Sending Customized User Registration Email Alert to Admin in Moodle step2 From My blog post: http://codeboxr.com/blogs/sending-customized-user-registration-email-alert-to-admin-in-moodle
/**
* Send email to specified user with confirmation text and activation link.
*
* @global object
* @param user $user A {@link $USER} object
* @return bool Returns true if mail was sent OK and false if there was an error.
*/
//update by codeboxr
function send_confirmation_email($user) {