From 7f750b7d6671f1feae8b6e633a86b47e4d232d58 Mon Sep 17 00:00:00 2001 From: Nivesh Date: Mon, 3 Oct 2022 22:34:14 +0530 Subject: [PATCH] add user to list --- htdocs/create.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/htdocs/create.php b/htdocs/create.php index 5f457e0..e1fdc2b 100644 --- a/htdocs/create.php +++ b/htdocs/create.php @@ -12,6 +12,7 @@ require_once('wp_account_creator.php'); $domain = getenv("DOMAIN"); $mail_domain = getMailDomain(); +$newUserListFile = getenv('NEW_USER_LIST_FILE_PATH'); if (!isset($_POST['username']) || !isset($_POST['password']) || !isset($_POST['displayname']) || !isset($_POST['repassword'])) { $error_string = $strings["error_mandatory_missing"]; @@ -91,6 +92,7 @@ $userData->referrerCode = $referrerCode; $accountsCreators = getAccountsCreators($domain); validateAccountOnAllServices($accountsCreators, $userData); createAccounts($accountsCreators, $userData); +addUserToList($user->email); sendWelcomeMail($authmail, $mbox, $domain, $userData->name); $done = "$authmail:$authsecret:$mbox"; @@ -261,3 +263,8 @@ function sendWelcomeMailWithSendGrid(string $to, string $mbox, string $domain, s sendEmailWithSendGrid($email); } +function addUserToList(string $email) +{ + global $newUserListFile; + return file_put_contents($newUserListFile, $email.PHP_EOL , FILE_APPEND | LOCK_EX); +} \ No newline at end of file -- GitLab