Send email to confirm account

Hello everyone,

I want to send email to user on first login (if email is not confirmed)
For that i use RESEND and it's already configured.

In flutter i'm using this code
      await _supabase.auth.resend(
        type: OtpType.email,
        email: userEmail,
      )

... but i don't receive any email in my gmail account

I can I resolve this issue ?
Was this page helpful?