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).
Questions tagged [email-verification]
500 questions
-1
votes
1 answer
Best way to verify email via mobile app
What could be the best to verify email for a mobile app? Can be iOS or Android app. It's too much trouble for user to go back to email app and then be redirected to browser and then verify there and return all the way to open their mobile app. Is…

Ani
- 710
- 7
- 19
-2
votes
1 answer
How to send a verification SMS or a e-mail for user without using smtplib?
I am trying to send a verification SMS or an e-mail to the user.
I find that using Python libraries like 'smtplib' or third-party libraries like 'sendgrid'
can send a verification e-mail or an SMS to the user but I don't have a better idea.
That I…

Code_Sphinx_TSK
- 618
- 16
-2
votes
2 answers
Email verify response always true
I want to know how to write 'if' statement while checking email. If it is returning True and email is valid I want to write it to the text file + comparing if the email is existing already duplicated in the save output file.
from validate_email…

Pawel
- 1
- 4
-2
votes
1 answer
Fatal error: Call to undefined function curl_init() in C:\xampp\htdocs\otp\textlocal.class.php on line 102
I am developing a new project for Event Management. For that, I need to implement OTP verification for mobile numbers for those who are registering for the event. I'm using textlocal API to send OTP and I'm getting the error as above.

Sabariraj TG
- 1
- 1
-2
votes
1 answer
How to send verification code and retrieve it in android
I am developing an application using web services(Volly). I just want to create
Forget password module
I am taking email from user. I just want to send verification code to that particular email address so that user can put that code and rest…

Adnan Ijaz
- 27
- 1
- 8
-2
votes
2 answers
Secure email verification
I want to send a template email to perform email verification of our users.
The template email should contain a link which need to call http POST request to somewhere. And than from third party API (ex. elasticemail) handle that request via…

Tatev
- 79
- 1
- 6
-2
votes
1 answer
I am looking for a code through which I can check whether the E-Mail account is existing or not
I am looking for a code through which I can check whether the E-Mail account is existing or not.

user7622304
- 1
- 2
-2
votes
1 answer
Check if email id exists in facebook account
I have a requirement. I want to have a verifier( i am using PHP) which takes the email id as input and verifies that whether there is any facebook account which exists with that email id or not. I am OK to use any APIs if available.

vikram
- 189
- 3
- 13
-2
votes
2 answers
Verify if an email address is active
I've trying to check if the email address exists and is alive though the smtp server, but I'm getting answers as exact as possible.

Sakthi Ganesh
- 1
- 1
- 1
-2
votes
4 answers
how to verify email is valid
I tried many method to track am email is valid or not before send it.
Am using php mailer and swift mail to send emails.Many website told refer the mx record. But it returns only the domain is valid or not. NOt returns the email. For example if i…

AGK
- 86
- 1
- 13
-2
votes
1 answer
How do I write a cron job script for verified act emails & lost passwords timer?
How do I write a cron for verified act emails & lost passwords timer?
I'm using apache on Linux server with mysql database and php code. In the database, besides the usual fields for an account, I have verified (a boolean that is 1 for yes and 0…

Bob Todd
- 39
- 1
- 1
- 6
-3
votes
1 answer
How to verify that user has clicked on the verification link sent after contact form 7 submit?
I am sending otp verification link in mail when user completes the form. For this I am using "OTP by Email for Contact Form 7 plugin". I want to verify that users are clicking on that link or not. And want to save data/or update true against the…

abhi25
- 37
- 6
-3
votes
1 answer
Here is a link . How is the random string f6909.... Generated?
I got an email for verification . http://xyz.pythonanywhere.com/record/upload/f690928d034d27ebb943b3f9bc9e3ae9/12. How is the string f6909..... Generated and is there a way to find out the pattern ? Is there any function which is generating the…

Anonymous
- 1
- 1
-3
votes
2 answers
How to make a link a period of time available php
I want to make a sign up and login system. I have already a sign up page with a verification mail, but I want that the verification link a couple of hours can be clikked. Example if the click on the link about 5 hours than the mail is active, but if…

Rolin
- 9
- 4
-3
votes
1 answer
Add send email verification link on register page php
I want to add an email verification link that should be sent when a new user registers, he has to go in and press the link and then will his account be activated. How can I do that in the best and easiest way? Here is my…

Markus
- 23
- 7