Skip to main content
We’ve updated our Terms of Service. A new AI Addendum clarifies how Stack Overflow utilizes AI interactions.
Filter by
Sorted by
Tagged with
67 votes
4 answers
194k views

How to check if an email address is real or valid using PHP

I found some websites that claim to verify if email addresses are valid. Is it possible to check if an email address is valid using just PHP? <?php if($_POST['email'] != ''){ // The ...
telexper's user avatar
  • 2,451
79 votes
8 answers
63k views

Firebase confirmation email not being sent

I've set up Firebase email/password authentication successfully, but for security reasons I want the user to confirm her/his email. It says on Firebases website: When a user signs up using an email ...
Benja0906's user avatar
  • 1,517
10 votes
4 answers
10k views

Email verification using Firebase 3.0 on Android

I knew that we can verify the users email with Firebase Auth 3.0. I'm not able to find any documentation regarding email verification on Android. I'm able to find the same for iOS as well as web but ...
Vijay's user avatar
  • 1,088
0 votes
1 answer
6k views

Verify a user's email address before confirming registration, with Flutter and Firebase

I've created a login and registration screen that works with my Flutter app, using Firebase as the backend authentication service. I'm able to switch between the login, registration and reset password ...
James's user avatar
  • 729
4 votes
6 answers
8k views

check if email are valid and exists

I am working on a web app that requires me to check if the users email are valid and exists. (I do the regex check) The question is what is best practice of verifying that an email exists? Here are ...
Murre's user avatar
  • 135
3 votes
1 answer
3k views

What is the best way to store account credentials (especially password) for an automated email script?

I am writing a simple script (windows powershell) to send automated emails. A computer will be running at all times collecting data and then sending emails at regular intervals. Part of sending an ...
P.Caruana's user avatar
15 votes
5 answers
16k views

How to send email verification after user creation with Firebase Cloud functions?

I'm trying to send the verification email after the user is created. Since there's no way on Firebase itself, I'm trying it with cloud functions. I cannot really find a lot of documentation about it. ...
Davide's user avatar
  • 784
3 votes
2 answers
3k views

Why Firebase-Email-Verification doesn't work?

$("#btn1").on('click', function(e) { e.preventDefault(); // <== disable form submit const email = signupForm['signup-email'].value; const password = signupForm['signup-password'].value; /...
user avatar
1 vote
1 answer
7k views

How should I verify email address existence and domain name existence in javascript or nodeJs?

I have tried so many npm packages to verify the email address and domain name. Here are the some of the npm packages I have tried email-check, email-verify, email-existence, legit, email-validator ...
Ramyachinna's user avatar
17 votes
4 answers
48k views

Email verification in Django

I am having a web-app in Django. I tried using the tokengenerator for password reset to create a verification mail, it's not activating the email. Coming to the problem: While the user provides ...
Joel Deleep's user avatar
  • 1,418
14 votes
2 answers
18k views

Laravel Email Verification 5.7 using REST API

How to remake Laravel 5.7 Email Verification for Rest API? Or is it worth doing everything from scratch?
Илья Зелень's user avatar
8 votes
4 answers
8k views

How to queue Laravel 5.7 "email verification" email sending

Laravel 5.7 included "email verification" feature works well but not async email sending (during user register or resend link page) is not ideal. Is there any way to send the email verification email ...
François's user avatar
  • 133
7 votes
6 answers
22k views

Verifying an email address exist in C#

Regarding this post about email verification, using C#, how would you issue a VRFY command issue a RCPT command
Kenneth J's user avatar
  • 4,896
4 votes
2 answers
5k views

Firebase Email verification not working with ActionCodeSetting

I'm trying to implement verification of a user's email (with the default verification URL in the email template), AND an ActionCodeSetting URL (dynamic link) to bring the user back to the app. I'm ...
lucius degeer's user avatar
2 votes
1 answer
709 views

Asp.net Identity Email Verifcation Token Not Recognized

We are using Microsoft's Identity Framework v2.0 in a web forms application. All is working well. We decided we want to add email verification as part of the new account set up process. If we ...
Denis Burke's user avatar
0 votes
1 answer
1k views

Firebase: Email verification and user login to be able to access the page

I have created a form "main.html#!/register" to allow users to enter their: firstname, lastname, email and login. Once all those entered an email verification is sent, so that they cannot get to the ...
Alexandre Asj's user avatar
0 votes
2 answers
1k views

The activationCode is null in my method input when I click the email Verification link

In the name of God Hi all. I'm creating registration for my mvc 5 website in VS 2017.It has Email confirmation in it. the URL link for activation will be received completely in Email. when I click , ...
Atefeh Mohammadpoor's user avatar
15 votes
2 answers
21k views

Can change the user's email in aws cognito user pool?

I am using aws cognito user pool in my application and users can log in to the app using their email that verified in aws cognito. Users can change login email and the users must verify the new email. ...
Rango527's user avatar
  • 221
13 votes
1 answer
20k views

Node.js - Send email on registration

I have signup form with the single email field. When an user enters its email I need to send a registration link. I've seen this Node.js example with signup form. But it has sendWelcome feature only....
Erik's user avatar
  • 14.9k
12 votes
2 answers
6k views

How come my Meteor app with accounts package is not sending a verification email?

I am making a meteor app and I have the mrt accounts-password package added as well as mrt accounts-ui-bootstrap-dropdown. I have added the loginbuttons so users can create an account and that works ...
Nearpoint's user avatar
  • 7,372
12 votes
2 answers
8k views

mongoose model for multi-types of users

I am building a kind of social network for students and teachers with MEAN stack. Students has their own account page different from the one of the teachers. I have one single registration page for ...
user3711521's user avatar
8 votes
7 answers
6k views

Is email verification with a link a bad idea

In my registration process, the user registers, they get emailed a verification link, and if they click it, only then would their account be verified. But isn't this verification method too easy for ...
twitter's user avatar
  • 9,345
6 votes
4 answers
12k views

Customize Laravel Default Verification Email (Change The Header)

I'm trying to change and modify the default verification email in Laravel, I've found the file when you can change the contents of the default email but inside the file it has only the Subject and the ...
Peshraw Hasan's user avatar
6 votes
1 answer
5k views

Laravel email verification - Forced to be logged in

After following the installation for enabling the new built-in email verification, all is working good (sending email after registration and clicking the activation enable the account). But, I'm faced ...
gzmo's user avatar
  • 173
6 votes
8 answers
11k views

Laravel 5.7 email verification throws 403

I implemented email verification in a Laravel 5.7 project I'm working on. I get the email, but whenever I click on the confirm button or even the url provided in the email, I get a 403 forbidden error....
Ehi's user avatar
  • 208
6 votes
10 answers
29k views

smtplib.SMTPSenderRefused: (530, b'5.7.0 Authentication Required. Learn more at\n5.7.0 https://support.google.2 - gsmtp', '[email protected]')

init.py from flask_wtf import FlaskForm from wtforms import StringField,SubmitField,PasswordField from wtforms.validators import DataRequired,Length,Email from flask import Flask from flask_bcrypt ...
Kelvin Achiampong's user avatar
6 votes
2 answers
13k views

Laravel 8: How do i verify the users email address after registration without having to require login information?

I set up a Laravel 8 installation with Jetstream and implemented a custom user registration, where an event is fired after a successful creation of the database record event(new Registered($user));. ...
Julian Weimer's user avatar
6 votes
4 answers
22k views

How to verify an email address really exists by sending a mail in java

Our web application sends email to every user who enters their email id. But how can i make sure that email id entered by user is valid one.Actually what we do when any user enters a email id we send ...
Kanchan Ruia's user avatar
5 votes
1 answer
1k views

Customized email verification success page using Firebase

I am generating email verification using the default Firebase function. The default email verification success page looks like that: I want to customize the response page after successful email ...
Raya Levinson's user avatar
4 votes
1 answer
6k views

django-allauth - Send email verification using Gmail account

I have setup allauth to send out an email for every new registered user so that their email can be verified. Right now I use the email_backend so that the email is sent to the terminal instead, and ...
Frank's user avatar
  • 681
3 votes
1 answer
1k views

Are E-mail verification with keys made from python uuid.uuid4 a good approach? [closed]

I would like to make e-mail verification in my website. I plan to send an email to the user with a link to verify the email address, wherein verification link I plan to include a key made with: str(...
andilabs's user avatar
  • 23.5k
3 votes
4 answers
7k views

Verify if an email address exists or not

I successfully done validation of mail address but I want some suggestions for verifying an email address. The main point is when user enter an email id it should b checked that it is real or just a ...
Sneha Jain's user avatar
2 votes
4 answers
4k views

Apply Laravel 5.7 MustVerifyEmail on Multiple Authentication System

I'm trying to apply Laravel-5.7 MustVerifyEmail on multiple authentication system. So far what I've done is as follows: created verification routes for the 'auditor' guard. overwrite the show method ...
M.Islam's user avatar
  • 1,720
1 vote
1 answer
498 views

Link inside verification-mail not working

Could somebody explain, or better tell me how to fix this problem? The link found in the "account creation verification email" on Parse-Server (/Heroku), is not working. The relevant code in index....
Michel's user avatar
  • 11.9k
1 vote
1 answer
2k views

Laravel Redirect To Login Page After Successful Verification

I implements MustVerifyEmail to verify registered user. What I want is it will redirect to login page after successful verification by email. Trying to do this, but still, it keep redirect to /home. ...
Sead Lab's user avatar
  • 211
1 vote
1 answer
2k views

Set isEmailVerified of already verified firebase Users to false

Every year i want my Firebase users to verify their account-email again, to check that their Email address are still in use. To test this i sent a new verification email to my (already verified) ...
Devhess's user avatar
  • 289
1 vote
1 answer
2k views

Laravel 5.7 verify email localization

Laravel provides an ability to use different language by using app.config + lang folder. However, I don't see any reference in the docs on how to translate base email. I've enabled email verification,...
Sergey's user avatar
  • 7,692
1 vote
2 answers
421 views

Sending Verification email to existing users

I am working on a web app with an existing user base. Email verification was not initially implemented in the sign in flow. I have successfully added code for sending verification email for all new ...
nsrCodes's user avatar
  • 1,208
1 vote
0 answers
3k views

WinError 10060 A connection attempt failed because the connected party did not properly respond

I am trying to verify emails by sending requests to SMTP servers. When I test in Linux, it works for 90% of emails. When I test in Windows, I did some analysis and like for 79% of emails will show the ...
Bese's user avatar
  • 66
1 vote
1 answer
628 views

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 { ...
Raya Levinson's user avatar
1 vote
1 answer
5k views

Laravel 5.7 Send an email verification on newly created user

Based on this documentation you can easily create a user email verification when someone signing up by them self, but how to send an email verification when admins created the account for their users? ...
Khrisna Gunanasurya's user avatar
1 vote
1 answer
5k views

Email Verification in yii framework

I want to verify the user when he click the random generated URL. Give me solution for these two process. 1.What is the URL manager configuration rules for get the hash (string and numbers) from ...
Geek TRK's user avatar
1 vote
1 answer
4k views

Password Reset in codeigniter

I have a user system with user registration and user login. on the login page there is a password reset button and on the password rest button the following codes are there but nothing happens when I ...
King's user avatar
  • 2,053
0 votes
1 answer
267 views

has_secure_password prevents setting a boolean to true

I want to do email confirmation, after having set up sign in/sign up and sessions using the has_secure_password and authenticate method. I have a user model, and I added a confirmed boolean. When a ...
Myna's user avatar
  • 569
0 votes
1 answer
3k views

How can I check if an email address is Correct and Exists? [duplicate]

Possible Duplicate: How to check if an email address exists without sending an email? I was wondering : is there a way to check if an email address is Correct and it Exists before sending an email,...
user avatar
0 votes
1 answer
223 views

Why is the customized Meteor accounts verification email not display as HTML?

Here's my code in imports/api/friends/methods.js: import {Meteor} from "meteor/meteor"; import {Accounts} from "meteor/accounts-base"; if (Meteor.isServer) { Accounts.emailTemplates.siteName = "...
TigerSpirt's user avatar
0 votes
0 answers
118 views

Parse-server/Heroku email account verification not working

I am trying to implement the email verification system on Parse-Server (/Heroku), when a user account is created; so that the user can confirm his/her account creation. Things are working well for ...
Michel's user avatar
  • 11.9k
0 votes
0 answers
401 views

Parse-Server, email-verification bug?

I have been stuck longer than I would like, with a problem related to email verification when creating an account on Parse-Server (/Heroku). Though I made a few post on the issue, I was not lucky ...
Michel's user avatar
  • 11.9k
0 votes
0 answers
5k views

Error: stream_socket_enable_crypto(): SSL operation failed with code 1. in laravel 5.2 [duplicate]

Actually,I want to redirect my user to the email verification page after signup process and asking him/her to enter the verification code sent to his/her email. I will be glad if you tell me the ...
Kiran Saxena's user avatar
0 votes
1 answer
1k views

Laravel 5.7 No Verification Email sent

When I register a user, or click 'click here to request another', no verification mail is sent, although it answers with 'A fresh verification link has been sent to your email address. ' . I checked ...
movcmpret's user avatar
  • 189