|
|
|
|
SaaSSendSecurityCode (Function) In french: SaaSEnvoieCodeDeSécurité Sends the security code to the user so that he can change his password. New in version 2024
IF NOT SaaSSendSecurityCode("Marcel") THEN
Info("Récupération du mot de passe impossible. " +
"Avez vous précisé une adresse mail dans votre profil ?")
RETURN
END
IF SaaSConnect("Marcel", SAI_Code) THEN
SaaSChangePassword(SAI_NouveauMotDePasse)
END
Syntax
<Result> = SaaSSendSecurityCode(<Login> [, <Webservice>])
<Result>: Boolean - True if the security code was successfully sent.
- False otherwise. To get more details on the error, use ErrorInfo.
<Login>: Character string Username. <Webservice>: Optional character string Web service to use. This parameter corresponds to:- the host name of the SaaS web service (for example, "Computer", "Computer.MyNetwork.com", "http://Mydomain.com").
- the full URL of the SaaS web service (for example, "http://domain.com/WDSAAS290_WEB/WDSaaS290.awws").
By default, the connection will be established to the SaaS web service installed with the WEBDEV Application Server on the local computer. Remarks - The security code is valid as long as the session that requested the change of password is enabled.
- The security code is sent to the email address specified in the saasUser variable corresponding to the user (Email). If this property is not specified, the email is sent to the email address used as the username (if it is valid).
- To be able to send the security code, the SMTP parameters of SaaS administrator must have been configured:
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|