Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

108
votes
17answers
60k views

Validate email address in Javascript?

How can an email address be validated in Javascript? Though this solution may be simple, I'm sure this is one of those useful things that people will be Googling for and deserves its own entry on the ...
31
votes
14answers
42k 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 customer / user enters ...
19
votes
2answers
16k views

JQuery validate e-mail address regex

not too sure about how to do this. I need/want to validate email addresses by regex using something like this: ...
13
votes
8answers
15k views

What characters are allowed in email address?

I'm not asking about full email validation. I just want to know what are allowed characters in user-name and server parts of email address. This may be oversimplified, maybe email adresses can take ...
9
votes
2answers
792 views

How to validate an email in php5?

How can I validate the input value is a valid email address using php5. Now I am using this code function isValidEmail($email){ $pattern = ...
8
votes
4answers
1k views

How to check if an email address is fake ?

I need to know how check if email address is valid without using link in email confirmation. How can I do this?
8
votes
1answer
15k views

jQuery email validation requirements

I'm using the jQuery.Validation plugin for client side validation, and among other things I validate email addresses. Now I also want to validate on the server side (for users without javascript etc). ...
6
votes
6answers
2k views

Best practices for email address validation (including the + in gmail addresses)

I know there are a lot of questions on here about email validation and specific RegEx's. I'd like to know what the best practices are for validating emails with respect to having the ...
6
votes
7answers
1k views

Is there a php library for email address validation?

I need to validate the email address of my users. Unfortunately, making a validator that comforms to standards is hard Here is an example of a regex expression that tries to comform to standard Are ...
5
votes
4answers
351 views

C# Email Regular Expression — Any out there that adhere to the RFC 2822 guidelines?

I realize that there are a ton of regex email validations, but I can't seem to find one that adheres to the RFC 2822 standard. The ones I find keep letting in junk like ..@abc.com get through. ...
5
votes
5answers
371 views

Is root@[127.1] a syntactically valid e-mail address?

Is root@[127.1] a syntactically valid e-mail address? Why? Why not?
5
votes
1answer
326 views

Is there a Java implementation of the HTML5 input email validation?

I'd like to use the new <input type="email" /> element. I'd like to have Java code that implements the same validation on the server that happens in the browser. The HTML5 spec defines email ...
5
votes
2answers
1k views

Email confirmation in Rails without using any existing authentication gems/plugins

I'm working on this alerting service in Rails. And really, all I need to do is, when a user signs up, send a confirmation email to the user. And upon confirmation from the user, activate the user. I ...
5
votes
3answers
2k views

Does PHP's filter_var FILTER_VALIDATE_EMAIL actually work?

After reading various posts I decided not to use REGEX to check if an email is valid and simply use PHP's inbuilt filter_var function. It seemed to work ok, until it started telling me an email was ...
5
votes
7answers
4k views

Check that an email address is valid on iOS

I am developing an iPhone application where I need the user to give his email address at login. What is the best way to check if an email address is a valid email address?
5
votes
3answers
899 views

Using MX records to validate email addresses

Scenario: I have a contact form on my web app, it gets alot of spam. I am validating the format of email addresses loosely i.e. ^.+@.+\..+$ I am using a spam filtering service (defensio) but the ...
5
votes
4answers
563 views

What is the simplest regular expression to validate emails to not accept them blindly?

When users create an account on my site I want to make server validation for emails to not accept every input. I will send a confirmation, in a way to do a handshake validation. I am looking for ...
5
votes
3answers
9k views

TSQL Email Validation (without regex)

Ok, there are a million regexes out there for validating an email address, but how about some basic email validation that can be integrated into a TSQL query for Sql Server 2005? I don't want to use ...
5
votes
12answers
2k 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 @localhost allowed. ...
4
votes
1answer
126 views

How to use regular expression in TSQL?

I'd need to have a regular expression so that I can find all invalid email addresses in our database table. SELECT * FROM dbo.[Users] AS u WHERE u.EmailAddress not like 'regular expression of valid ...
4
votes
2answers
74 views

Regular expression to match an arbitrary length of characters in a string using javascript?

I m just learning regular expression matching using javascript, and have a doubt regarding the scenario described below. I'm trying to validate email, with condition below: Format should be ...
4
votes
3answers
82 views

List of mock valid/invalid Email Addresses for Unit Tests

By any chance does anyone know of a list of email addresses (don't need to be real) I can use for an email validation assembly for a unit test. I've been looking for one and can't seem to find one, ...
4
votes
1answer
194 views

Best way to send batch invitation emails

Currently in our application admin of a company invite multiple users to system. Our design is: take admin chosen separated email addresses, check user if exist and member of current company do ...
4
votes
2answers
137 views

How to de-duplicate e-mail addresses [closed]

Is there a way to reliably get a unique e-mail address from one put in from a user? The problem is services such as GMail allow you to put a period in the address and it's stripped out whereas with ...
4
votes
1answer
282 views

Problem in regex Email validator in C#

I'm using the following code for validating email address which are present in an array. But after successfully validating first email address in an array, it is always returning false for next email ...
4
votes
3answers
2k views

C# Prepared Statements - @ sign (at / strudel sign) queries

I Have a problem with a prepared statement in C#: OdbcCommand cmd = sql.CreateCommand(); cmd.CommandText = "SELECT UNIQUE_ID FROM userdetails WHERE USER_ID = ?"; cmd.Parameters.Add("@USER_ID", ...
4
votes
2answers
222 views

Email exist verification

Is it possible to check if an email-address is existing? I have earlier heard that it was possible through "contacting" the email-host, but it could be "dangerous" because your domain could be ...
4
votes
4answers
3k views

PHP email validation

For PHP what is the best email validation using preg, NOT ereg because it's deprecated/removed. I don't need to check if the website exists (it's not like maximum security). I've found many ways ...
4
votes
6answers
159 views

Is it a bad idea to automatically log users in from an email?

For many of the sites we develop, we verify the user's email address. Typically the workflow is such: User registers for site (activation email is sent with link to activate) User verifies email ...
4
votes
4answers
2k views

Why does filter_var($email, FILTER_VALIDATE_EMAIL) allow test@test?

I was just setting up the validation for a form in which I decided to try using the filter_var function to check the validity of my email address. I can not find out what filter_var actually allows ...
4
votes
5answers
986 views

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 ...
3
votes
1answer
53 views

jQuery form validation with available email check

So I have a form that uses the jQuery validation plugin to check the fields before the form can be submitted... pretty basic stuff and that all works fine but I would like the email to also be checked ...
3
votes
3answers
63 views

Regex email - how to allow plus symbols in email?

I always find regular expressions a headache, and googling didn't really help. I'm currently using the following expression (preg_match): ...
3
votes
1answer
103 views

Zend_Validate_EmailAddress versus filter_var(…, FILTER_VALIDATE_EMAIL)

Of Zend_Validate_EmailAddress and filter_var(..., FILTER_VALIDATE_EMAIL), which is better when validating an email address and why?
3
votes
5answers
344 views

Should uppercase letters be allowed in email addresses?

The official RFC documents state that we can use both upper and lowercase letters in the "local" part of the domain (plus many other crazy things). However, what is common in the real world - and ...
3
votes
1answer
517 views

Validate email address on exchange server

I'm allowing users to manage a distribution list stored in a database. Users are only allowed to enter emails that are @mydomain.com. A web based application then takes the distribution list and sends ...
3
votes
5answers
156 views

Creative account confirmation without the use of emails

I employ email validation to grant people full use of the site. The trouble is, sometimes these emails get spam-boxed, or never arrive, so I get many people complaining that they cannot confirm their ...
3
votes
2answers
197 views

Email address check in Javascript

I think many people have done some similar development tasks before: I would like to check the people's email address whether only match @tomtom.com or @stream.com. Currently, I have two solutions ...
3
votes
3answers
1k views

Regular expression which matches a pattern, or is an empty string

I have the following Regular Expression which matches an email address format: ^[\w\.\-]+@([\w\-]+\.)+[a-zA-Z]+$ This is used for validation with a form using javascript. However, this is an ...
3
votes
3answers
2k views

check for valid email address [closed]

Possible Duplicate: What is the best regular expression for validating email addresses? hello, can you help with my coding? my problem is this: when the user wants to register, and when ...
3
votes
2answers
802 views

Confirmation link Email in JSF

How do you make a link which you can email to users to confirm their email address is clicked in JSF? i.e. once they click on the link their account will be activated.
3
votes
6answers
4k views

Email check regular expression with bash script

im trying to make a bash script to check if a email address is correct. I have this regular expression: ...
3
votes
2answers
915 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 googled the answer with ...
3
votes
4answers
877 views

What's the best way to validate multiple emails and handle errors in Rails?

In the current app I'm building I've got a textarea where a user will enter a comma-delimited list of email addresses. I'm currently splitting the list into an array and then saving one by one. But ...
2
votes
3answers
51 views

jQuery Validate, need to prevent free email addresses (e.g. Gmail, Hotmail)

I need to add a custom validation rule (or set of rules) to prevent a whole list of email addresses from registering. This is already running server side, but we want to have the front-end mimic this ...
2
votes
2answers
47 views

Is it standard practice to block or allow email addresses with a ‘+’ in?

I want each user to register with a unique email address. However some email addresses like GMail allow you to add a + suffix which could be used to register multiple accounts to a website but it all ...
2
votes
2answers
48 views

JQuery validation plugin require email in certain cases

I have a member management page where the client wants a field to be always required and if the user is a member, then it must be an email address. If the account is for an admin, it does not have to ...
2
votes
2answers
88 views

MySQL Validate Email Records

I know you can use PHP Email Validate filters to check if the data is abc @ abc . ext Is there anyway I can run a MySQL query to do this, check for only that style format. Otherwise I will have to ...
2
votes
3answers
83 views

Best way to filter out emails and domains in python

I have a list of emails and domains which I am trying to filter out as a blacklist For email it is easy, since I can simply compare the emails directly but for domains, emails with subdomains etc ...
2
votes
3answers
211 views

c# email validation, confused by MailAddress behavior: 'john@gmail.' is valid?

yet another question on email validation, sorry for that. Like a good C# boy, I use the object MailAddress to validate mail addresses. A client of mine entered the following address, which was ...

1 2 3 4 5