Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 506 Bytes

verification.md

File metadata and controls

19 lines (13 loc) · 506 Bytes

Email Verification


After registration, Kratos requires verifying the email address before the account is fully activated.

To implement verification:

After registration is complete, call getVerificationFlow on the client:

final flow = await client.getVerificationFlow();

This will initialize the verification process and return a VerificationFlow object.

Send code obtained from e-mail via:

final result = await client.verifyAccount(flowId: flowId, code: code)