function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
JWikkJWikk 

New Portal user registration email confirmation link

We register users through the Site.createPortalUser function where we send email to the new user.

 

userId = Site.createPortalUser(u, accountId, registerPassword,true);

 The standard email template contains information of the username and password. However, we were hoping we could also send them a unique generated url that they would click on to confirm that they own the given email account. This would activate the user's access.

 

Has anyone done this with registration of portal users?