How to resend register confirmation email

Hi @kelvinspaces,

You can do it by calling the endpoint your-strapi-host/auth/send-email-confirmation.

Example:

import axios from 'axios';

// Request API.
axios
  .post(`http://localhost:1337/auth/send-email-confirmation`, {
    email: 'user@strapi.io', // user's email
  })
  .then(response => {
    console.log('Your user received an email');
  })
  .catch(error => {
    console.error('An error occurred:', error.response);
  });

You can find more informations here: Roles & Permissions - Strapi Developer Documentation