diff --git a/webgui/include/ajax/functions/WiSPUsers.php b/webgui/include/ajax/functions/WiSPUsers.php
index c72c5c1a95562be65bdbb59f6b0c13d755f769ec..57b8c23c22c98ef0521be69ba21e5f04e7e72555 100644
--- a/webgui/include/ajax/functions/WiSPUsers.php
+++ b/webgui/include/ajax/functions/WiSPUsers.php
@@ -195,6 +195,7 @@ function removeWiSPUser($params) {
 # Add wisp user
 function createWiSPUser($params) {
 	global $db;
+	global $adminEmails;
 
 	DBBegin();
 	$res = "Username & Password required for single user. For adding multiple users an integer is required.";
@@ -428,6 +429,7 @@ function createWiSPUser($params) {
 						$res = DBDo("INSERT INTO users_to_groups (UserID,GroupID) VALUES (?,?)",array($id,$groupID));
 					}
 				}
+
 				# Link to wisp users
 				if ($res !== FALSE) {
 					$res = DBDo("INSERT INTO wisp_userdata (UserID) VALUES (?)",
@@ -436,6 +438,49 @@ function createWiSPUser($params) {
 				}
 			}
 		}
+
+		# Email userlist to admin
+		if ($res !== FALSE && isset($adminEmails)) {
+
+			// multiple recipients
+			$to = $adminEmails;
+
+			// subject
+			$subject = count($wispUser).' WiSP users added';
+
+			// html
+			$html = '';
+
+			foreach ($wispUser as $key => $val) {
+				$html .= '<tr><td>'.$key.'</td><td>'.$val.'</td></tr>';
+			}
+
+			// message
+			$message = '
+			<html>
+				<head>
+					<title>User List</title>
+				</head>
+				<body>
+					<table cellspacing="10">
+						<tr>
+							<th>Username</th><th>Password</th>
+						</tr>'.$html.'
+					</table>
+				</body>
+			</html>
+			';
+
+			// To send HTML mail, the Content-type header must be set
+			$headers = 'MIME-Version: 1.0' . "\r\n";
+			$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
+
+			// Additional headers
+			$headers .= 'From: SMRadius';
+
+			// Mail it
+			$res = mail($to, $subject, $message, $headers);
+		}
 	}
 
 	# Commit changes if all was successful, else rollback
diff --git a/webgui/include/config.php b/webgui/include/config.php
index 5de0edcdfd94e487b1bc7060305debc27207a85a..838e486192a2ecf6e5d2b488a8cef05f4557296f 100644
--- a/webgui/include/config.php
+++ b/webgui/include/config.php
@@ -32,8 +32,9 @@ $DB_PASS="root";
 $DB_TABLE_PREFIX="";
 
 
-# Admin email
-# $adminEmail = 'admin@example.com';
+# Email address/addresses to receive notifications
+# Seperated by commas, eg. "admin@example.org,admin@example.net"
+# $adminEmails="admin@example.org";