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
8
votes
4 answers

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 through a queue without rewrite whole email…
François
  • 133
  • 1
  • 6
8
votes
7 answers

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 the bots? I think an email could be created by a…
twitter
  • 8,895
  • 6
  • 22
  • 20
8
votes
0 answers

KeyCloak: how to send out email verification email, but not require it for logon

I'm configuring Keycloak email verification for my website. I found the settings to require email verification for signups but that doesn't fit my use-case. My website can be used without verified email, but some functions may be disabled. So when a…
barney765
  • 437
  • 3
  • 12
8
votes
2 answers

Email verification and password reset - django rest framework and angularjs

How do I implement the built in views for password-reset in the django.rest.auth and how do I create an email verification system for registration using the django rest framework and angularjs? I have been searching for a tutorial or some good…
8
votes
9 answers

java: how can i verify an email address to be valid without sending a confirmation e-mail?

when people register to my website i don't want to send them a verification e-mail, i just want to check if that e-mail exists. is there a way to do such a thing ? using apache-tomcat and java as my main programming language. thanks a lot!
ufk
  • 30,912
  • 70
  • 235
  • 386
7
votes
2 answers

Laravel 8 / Fortify - Email verification link not working (Safari)

I'm trying to get laravel's implemented email verification system working (https://laravel.com/docs/8.x/verification). What i did so far: Enabled the Feature emailVerification in the file config/fortify.php like so: ... 'features' => [ …
leonnicklas
  • 381
  • 1
  • 5
  • 20
7
votes
6 answers

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
  • 4,846
  • 11
  • 39
  • 56
6
votes
4 answers

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 link to his email id to activate the acount. I…
Kanchan Ruia
  • 331
  • 3
  • 6
  • 13
6
votes
8 answers

smtplib.SMTPSenderRefused: (530, b'5.7.0 Authentication Required. Learn more at\n5.7.0 https://support.google.2 - gsmtp', 'noreply@demo.com')

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 import Bcrypt from flask_login import…
6
votes
1 answer

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 with the case where the user must be logged-in…
gzmo
  • 163
  • 1
  • 9
6
votes
5 answers

How to verify email sender address is not spoofed?

As per this question I asked previously on Google App Engine, if I have access to all the information in a standard email, not just the From, To, Subject, Body fields, but also all the headers and MIME information, how can I verify that two incoming…
daveslab
  • 10,000
  • 21
  • 60
  • 86
5
votes
4 answers

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 lines I couldn't find the header of the email to…
Peshraw Hasan
  • 1,060
  • 1
  • 8
  • 14
5
votes
0 answers

Django allauth send email verification code instead of email verification link

I am using Django allauth as an API for a mobile application. Currently, when you register Django will send you an email containing a link which you have to go to in order to verify your email. But what if I want to make it so that Django send an…
Advay Ratan
  • 229
  • 1
  • 13
5
votes
8 answers

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. I have searched for several solutions, but…
Ehi
  • 168
  • 1
  • 2
  • 12
5
votes
2 answers

How can I customize AWS Cognito default confim message?

I am using AWS Cognito to verif users' emails by sending verification links to users' email. After users click the links, a default confirm message "Your registration has been confirmed!" is shown. Is there a way to customize this message? Thank…
trangmx
  • 81
  • 1
  • 4
1
2
3
33 34