Customize your verification emails.
Use the link parameter to inject verification links into the user verification email.
You can customize the link text by providing a string, as shown in the example below.
Example
verificationEmailStyle: "LINK", verificationEmailBody: (createLink) =>`Your verification link is ${createLink()}.`
Example
Tocustomizethelinktext, youcanprovidecustomlinktexttothe . verificationEmailBody: (createLink) =>`Your custom verification link is ${createLink('custom link text')}.`
OptionalverificationEmailStyle
verificationEmailStyle?:"LINK"
The type of verification. Must be one of "CODE" or "LINK".
Customize your verification emails. Use the link parameter to inject verification links into the user verification email. You can customize the link text by providing a string, as shown in the example below.