Guides
Enable Confirm Email After Signup
Configure Supabase email confirmation for new user registrations in CloudNua Mobile.
Enable Confirm Email After Signup
CloudNua Mobile integrates with Supabase to handle email confirmations following user registration.
Local Setup
For local development, Inbucket supports email confirmation verification.
To activate this feature locally:
- Navigate to
apps/supabase/supabaseand openconfig.toml - Locate the
[auth.email]section - Set
enable_confirmationstotrue(changing fromfalse) - Restart your server with:
Terminal
npm run supabase:restartConfirmation emails will be accessible at http://localhost:54324/.
Supabase Cloud Deployment
When deployed to Supabase Cloud, you can configure custom SMTP servers for email verification:
- Access your project dashboard
- Select
Authenticationfrom the sidebar - Navigate to
ProvidersunderConfiguration - Enable
Emailand toggleConfirm Emailto active - Go to
Project SettingsthenConfigurationthenAuthentication - Locate and enable
SMTP settings - Input your SMTP server credentials
Note: You need to setup your own custom SMTP server for this to work.
For SMTP provider guidance, consult the Supabase documentation on authentication SMTP configuration.