sAllowedEmails = $sAllowedEmails; return $this; } public function isPossible(\RainLoop\Model\Account $oAccount) : bool { $sFoundedValue = ''; return $oAccount && $oAccount->Email() && \RainLoop\Plugins\Helper::ValidateWildcardValues($oAccount->Email(), $this->sAllowedEmails, $sFoundedValue); } public function ChangePassword(\RainLoop\Model\Account $oAccount, string $sPrevPassword, string $sNewPassword) : bool { $bResult = false; // TODO return $bResult; } }