From af2302c1dbefa94968bd1dc067b9488790fd6f9c Mon Sep 17 00:00:00 2001 From: mistic100 Date: Sat, 14 Jan 2012 12:00:47 +0000 Subject: 2021: email notification on user creation + mail for admin at installation git-svn-id: http://piwigo.org/svn/trunk@12883 68402e56-0260-453c-a942-63ccdbb3a9ee --- register.php | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) (limited to 'register.php') diff --git a/register.php b/register.php index b5cdfb61c..93f962391 100644 --- a/register.php +++ b/register.php @@ -59,8 +59,31 @@ if (isset($_POST['submit'])) if (count($page['errors']) == 0) { + // email notification + include_once(PHPWG_ROOT_PATH.'include/functions_mail.inc.php'); + + $keyargs_content = array( + get_l10n_args('Hello %s,', $_POST['login']), + get_l10n_args('Thank you for registering at %s!', $conf['gallery_title']), + get_l10n_args('', ''), + get_l10n_args('Here is your password: %s', $_POST['password']), + get_l10n_args('', ''), + get_l10n_args('If you think you\'ve received this email in error, please contact us at %s', get_webmaster_mail_address()), + ); + + pwg_mail( + $_POST['mail_address'], + array( + 'subject' => '['.$conf['gallery_title'].'] '.l10n('Registration'), + 'content' => l10n_args($keyargs_content), + 'content_format' => 'text/plain', + ) + ); + + // log user and redirect $user_id = get_userid($_POST['login']); log_user($user_id, false); + $_SESSION['page_infos'][] = l10n('Successfully registered, an email with your password has been sent to you. Welcome!'); redirect(make_index_url()); } $registration_post_key = get_ephemeral_key(2); -- cgit v1.2.3