1
vote
5answers
82 views
check if email are valid and exists
Hi
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 em …
0
votes
4answers
58 views
How to weed out bad emails (in php)?
I have a site where users register for an account. I have an internal communication system, that sends them an email when they get a private message. I dont force people to confirm …
0
votes
2answers
58 views
Email validation MX Lookup
I have been asked to implement some email address validation on a web app - I'm sure we've all been there a thousand times... however, this time I have been asked to do an MX Looku …
1
vote
5answers
190 views
How to check for a duplicate email address in PHP, considering Gmail (user.name+label@gmail.com)
How can I check for duplicate email addresses in PHP, with the possibility of Gmail's automated labeler and punctuation in mind?
For example, I want these addressed to be detected …
1
vote
2answers
64 views
How do I require asp.net forms authentication to send a validation email when registering a new account?
I have just set up a new ASP.NET MVC website and I would like to change it to force the user to authenticate their email address by clicking a validation link in an email. I googl …
1
vote
4answers
62 views
Is spam mail killing website authentication ?
I have so much difficulty sending authentication mail to new user that I'm considering relying only on third party logging system like stackoverflow does.
The problem is that cont …
0
votes
2answers
112 views
C# Regex Compatibility Issue (.NET 3.5 vs .Net 2.0)
I have the following regex expression on a dev machine that is running .NET 3.5 and it works as designed. However when it is deployed to our test environment (which is running .NE …
2
votes
5answers
240 views
What’s wrong with this RegEx for validating emails?
Here's a regex for validating emails - \S+@\S+\.\S+, I didn't write it. I'm new to Regular Expressions and do not understand them all that well.
I have a couple of questions:
Wh …
0
votes
2answers
50 views
E-mail format REGEX PHP- there are many like it but this one is mine
Uh, and it's broken:
I had a perfectly working regex that allowed all the numbers, letters and only e-mail relevant punctuation (._-@) to sanitize my email fields, and then I thou …
1
vote
5answers
87 views
Consecutive wild characters in email
I was looking at email validation. I read in RFC specs that consecutive . (dot) are not allowed, like, mail..me@server.com.
But are different wild characters allowed to occur cons …
1
vote
5answers
202 views
Regular expression for email [closed]
Possible Duplicate:
What is the best regular expression for validating email addresses?
I am using this particular regular expression for checking emails.
"^[A-Za-z0-9](( …
8
votes
13answers
2k views
Validate email address in Javascript?
What's the best way to validate an email address in Javascript?
Though this solution may be simple, I'm sure this is one of those useful things that people will be Googling for an …
1
vote
5answers
203 views
Check well formatted email address
I have a text file of e-mails like this:
10:info@example.com;dev@example.com
12:john@host.com; "George <g.top@host.com>"
43:jim.p@web.com.;sue-allen@web.com
...
I wanted …
9
votes
11answers
5k views
How to check if an email address exists without sending an email?
I have come across this PHP code to check email address using SMTP without sending an email.
Has anyone tried anything similar or does it work for you? Can you tell if an email cu …
2
votes
11answers
973 views
What would be a globally accepted regular expression to match e-mail addresses
I have seen many examples, with many 'no, you missed something' comments. What is the right way to match an e-mail address?
For Sanity sake, only fully-qualified domain names, no …
