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
0 answers

TypeError: user.get is not a function

I am using passport magic email verification feature (refering from https://github.com/mxstbr/passport-magic-login) this is my code const magicLogin = new MagicLoginStrategy({ secret: "process.env.MAGIC_LINK_SECRET", …
1
vote
0 answers

How to verify a email without sending actual email(SMTP)

I want to check if a batch of email(gmail) address is valid and I didn't want to pay for a service. I tried openssl s_client but it keeps on renegotiating and failing and the documentation is too poor for me to resolve…
1
vote
2 answers

WebDriver Automation on verifying an email

I'm using WebDriver and Java to automate some web pages. I have a scenario that I'm not sure the best way to manage. A website provides the option to leave a comment, but if you are not a user it sends you the email with a link to click to activate…
Green
  • 1,405
  • 4
  • 21
  • 27
1
vote
0 answers

Laravel: Issue with Sending Verification Email to User Upon Registration

I'm currently facing an issue where the verification email is not being sent to users after they submit the registration form in my Laravel application. Here's what I have already checked and confirmed: Email Configuration: I have verified that my…
1
vote
1 answer

How to create django registration with email conformation code

Someone has a guide mb or tutorial about how can i make instant email verification by code like i want to register user and after he typed his email username and password in registerForm send him code on email NOT link and check that code and create…
Zesshi
  • 435
  • 12
1
vote
2 answers

Unwanted useEffect calls with axios

I'm creating a verification page with a token parameter using react, express and axios Here's the page script: import React, { useState, useEffect } from 'react'; import { useParams } from 'react-router-dom'; import axios from 'axios'; import {…
Alexxino
  • 557
  • 2
  • 16
1
vote
1 answer

Pass custom attributes as placeholder in verification mail of AWS cognito

I have user attributes family_name and given_name I want to use this in my verification email template like hi {given_name} {family_name} your verification code is {####} but the placeholder is not being replaced by the value. how can I achieve…
1
vote
1 answer

Laravel 10 Email verification link not verifying via the email link, just in postman

What I want to happen : Verify the user's email when clicking the button in the verification email. What happens : The authentication is failing because laravel is not retrieving the bearer token of the user. It returns "Unauthenticated". What I've…
1
vote
2 answers

How to verify existence of a Recipient using Mailkit in C#

I am developing a simple mailing Application in C#, where I want to check the validity of the recipient, In other words we can say that existence of the recipient. I tried some articles pre written on the same subject concerned, but no luck after…
1
vote
1 answer

how did Slack implement sing in for multiple customers

anyone knows how Slack implement end user login by typing only email. I believe Slack has million of end users on multiple customers and multiple domains. How do they verify users login by only typing email? I don't believe Slack has all customers…
Mindan
  • 979
  • 6
  • 17
  • 37
1
vote
1 answer

Once I send an email, how much information can I get about its progress?

I'm designing a capability to send emails out for my app. I was wondering once I send out an email, is there anyway to find out whether the email address exists and is real the email was received if not received, what the problem was? (mailbox…
Diskdrive
  • 18,107
  • 27
  • 101
  • 167
1
vote
0 answers

Creating a firebase email verification link with a custom base url via code

In our project, we have several different apps that are using the same set of users that we authenticate using firebase (roles & privileges are stored and managed in our own server depending on the app they have been registerd for, firebase is only…
1
vote
0 answers

Email Verification without creating new user - Firebase

In firebase you can create an email verfication easily. However you need to create a new user. I would like to send an email verfication to a user's email without creating a new user. This is an unsubscribe function where I want the user to be able…
Buddy Bob
  • 5,829
  • 1
  • 13
  • 44
1
vote
1 answer

Verified users access home and unverified users stay in the login

I am checking if the user got a verification email after registration inside login function: static func authenticate(withEmail email :String, password:String, completionHandler:@escaping…
Haneen
  • 17
  • 1
  • 6
1
vote
6 answers

Laravel 9 email verification Invalid Signature

I've read all available solutions, but no chance. It always redirects to the 403 page with message (Invalid Signature). Here is my route : Auth::routes(['verify' => true]); My env file…
Hooman Limouee
  • 1,143
  • 2
  • 21
  • 43