Report new users
authorJoey Schulze <joey@infodrom.org>
Wed, 25 Jun 2008 16:50:11 +0000 (16:50 +0000)
committerJoey Schulze <joey@infodrom.org>
Wed, 25 Jun 2008 16:50:11 +0000 (16:50 +0000)
lib/login.inc

index b59c96d..59ecdd8 100644 (file)
@@ -182,6 +182,7 @@ function send_activation($email, $user, $code)
 
   $url = sprintf('%sactivate.html?code=%s', $cfg['home'], urlencode($code));
   $subject = 'Aktivierung Account Zeitungsliste';
+  $header = array('Bcc: ' . $cfg['mailto']);
 
   $body = sprintf('Willkommen %s!
 
@@ -194,7 +195,7 @@ Ihren Browser ein:
 
 ', $user, $url);
 
-  sendmail($email, '', $subject, $body);
+  sendmail($email, '', $subject, $body, $header);
 
   return true;
 }