Questions tagged [email-verification]

Email verification is the process determining whether a particular email-address can actually receive mail and (usually) that a particular person has access to it (e.g. during an account signup process). This is distinct from email validation, which is concerned simply with determining whether a given string is a valid email address (leaving aside the problem of whether it exists, or who owns it).

500 questions
1
vote
1 answer

Email OTP verification with firebase authentication in Flutter

By default firebase's sending a link to verify the user email, but I want to send a otp with that email. So is there a way to customize that email or send a otp and then once the user entered the correct code on the app get Firebase to mark that…
1
vote
1 answer

How to manually regenerate gmail api refresh token nodejs

I am working on an e-commerce project built with React & nodejs (on MongoDB). I have recently refactored my users route(NodeJS) to integrate account verification system(new user registration/account creation phase) using googleapis and…
Michael
  • 21
  • 1
  • 6
1
vote
1 answer

Can you customize what's in the email when you use email_auth to sent OTP? (flutter)

I am implementing email_auth package in flutter to sent out the OTP code for verification. After successfully implementing it, here is the email I got. Verification Code There is nothing wrong with it, but I would like to customize the message so…
smbbb
  • 95
  • 1
  • 9
1
vote
0 answers

Simple user management library for Spring Boot

I find myself implementing user management over and over again in almost the same way in each Spring Boot Project: user/login user/register user/reset user/activation (email verification) Is there a user library/plugin for user management in…
1
vote
2 answers

How to dispatch an event in laravel 8?

I am manually implementing user registration within my application and I have failed to understand this section of laravel 8 docs If you are manually implementing registration within your application instead of using a starter kit, you should…
yussuf mussa
  • 21
  • 1
  • 6
1
vote
1 answer

Should you confirm email addresses obtained from external login providers?

I am working on a .NET application and I have set up an external login with facebook. Currently, when the user uses the external login functionality, signs in to Facebook and my app recieves his email address, I create a new user account and…
sladekm
  • 37
  • 8
1
vote
3 answers

Verifying whether or not a person has been invited to register.

I'm trying to code a basic invitee-verification page in Ruby on Rails 3. I'm trying to code a basic website page that has a text field for the user to enter their email address and then the prograverify whether or not that email address has been…
jake
  • 19
  • 1
  • 1
  • 3
1
vote
1 answer

How to sign out user in firebase after creating user with email?

In my app I want to signout the user after creating user with email inorder to verfiy his email. I tried different methods but they aren't working. Here is my code: try { await app .auth() …
1
vote
1 answer

verification like alternative

we usually send some verification link into email when users registered to verify users email. The link may look similar to http://www.example.com/register.php?id=12832&&unique_number=ij86435232as it means that we have to store this unique number…
Inactive
  • 71
  • 10
1
vote
1 answer

Firebase: disable account on verification or send verification after enabling

In a Flutter + Firebase application I'm working on, user create an account (with Firebase Auth) and receive a verification email. However, this application is only for a select number of people, and therefore I have it implemented in such a way that…
1
vote
1 answer

Authentication flow with node.js

i am building authentication microservice, with email confirmation, problem is that in past, i used randomly generated string (crypto.randomBytes(20).toString('hex')) it worked fine until it became a headache when gmail decided that zoho emails…
Iliaaaa
  • 79
  • 1
  • 8
1
vote
1 answer

Firebase email verification from server side

I have a link to default email verification function in Firebase. Using this link from the browser works fine, however it fails when being used from server side with the following code: try { const url =…
1
vote
0 answers

django rest allauth: activation link expiration

I am using django_rest_auth and allauth for email verification.When the activation link for email is expired or email record is deleted, clicking on activation link sends me to localhost:8000/acccounts/confirm-email/... and tells me that activation…
1
vote
0 answers

How to change the email of users using verification code in AWS Amplify?

AWS - Amplify - I am using AWS Cognito and AWS Amplify library with React application (backend: NodeJS) and users are doing login with email. I want to change the user's email using amplify from the front end. I used this: updateUserAttributes 1.…
Rango527
  • 141
  • 1
  • 1
  • 7
1
vote
0 answers

Is there any way to change or hide my device ip while sending email from localhost?

Actually I am creating an email-verifier in python using a bunch of modules. One of them is smtplib. My code connects to the smtp-server of the given e-mail and send a demo message. The server returns reply code. Python processes that code and…