Password reset SMS for the log-in credentials
To set up password reset confirmation:
Add section
Copy
<configSections>
...
<section name="passwordReset" type="EBS.Core.Web.MVC.PasswordResetConfig, EBS.Core.Web.MVC"/>
</configSections>
Add configuration element
Copy
<configuration>
...
<passwordReset xmlns="urn:EBS.Core.Web.MVC">
<confirmation channelProvider="" messageTemplate="" enabled="true"/>
</passwordReset>
...
</configuration>
where:
- enabled - if true, after the completion of the password reset flow a message will be sent to user’s phone number. Default value: false;
- channelProvider - the provider that will be used to send the message. Must be one of “GatewaySmsOTP“ or “FtosApiSms“;
- messageTemplate - the template that will be used to create the message. Must be a record from FTOS_CMB_ActionTemplate entity.
If the configuration element is missing the message will not be sent.