From 9fe8145a0fc0da4954025727316cacc598f52306 Mon Sep 17 00:00:00 2001 From: Cameron Date: Tue, 30 Apr 2013 03:42:33 -0700 Subject: [PATCH] Issue #160 - missing quick-add-user template. Requires testing. --- e107_core/templates/email_template.php | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/e107_core/templates/email_template.php b/e107_core/templates/email_template.php index 29f954cbd..1325b64b4 100644 --- a/e107_core/templates/email_template.php +++ b/e107_core/templates/email_template.php @@ -315,5 +315,25 @@ $MONTHLYUPDATE_TEMPLATE = array( {BODY}
To find out more, simply click on the links!', // 'email_footer' => 'footer' ); + + +/* + * QUICK ADD USER EMAIL TEMPLATE - BODY. + * This is the email that is sent when an admin creates a user account in admin. "Quick Add User" + USRLAN_185 = A user account has been created for you at {SITEURL} with the following login:
Login Name: {LOGIN}
Password: {PASSWORD}

+ USRLAN_186 = Please go to the site as soon as possible and log in, then change your password using the \'Settings\' option.

+ You can also change other settings at the same time.

Note that your password cannot be recovered if you lose it. +*/ + +$QUICKADDUSER_TEMPLATE = array( + 'template_name' => 'Quick-Add-User', + 'template_type' => 'quickadd', + 'email_overrides' => '', +// 'email_header' - any header information (usually loaded from the default) + 'email_body' => USRLAN_185.USRLAN_186, +// 'email_footer' => 'footer' + ); + + ?> \ No newline at end of file