Manually generating a link
You can use our backend SDK to generate the email verification link as shown below:
- NodeJS
- GoLang
- Python
- Other Frameworks
Important
For other backend frameworks, you can follow our guide on how to spin up a separate server configured with the SuperTokens backend SDK to authenticate requests and issue session tokens.
import EmailVerification from "supertokens-node/recipe/emailverification";
async function createEmailVerificationLink(userId: string, email: string) {
try {
// Create an email verification link for the user
const linkResponse = await EmailVerification.createEmailVerificationLink("public", userId, email);
if (linkResponse.status === "OK") {
console.log(linkResponse.link);
} else {
// user's email is already verified
}
} catch (err) {
console.error(err);
}
}
note
Coming Soon
- Asyncio
- Syncio
note
Coming Soon
note
Coming Soon
Multi Tenancy
Notice that the first argument to the function call above is "public"
. This refers to the default tenant ID that is used in SuperTokens. It means that the generated email verification link can only be consumed by users belonging to the "public"
tenant.
If you are using our multi tenancy feature, you can pass in the tenantId that contains this user, which you can fetch by getting the user object for this userId.
Finally, the generated link will use the configured websiteDomain
from the appInfo
object (in supertokens.init
), however, you can change the domain of the generated link to match that of the tenant ID.