Questions tagged [email-address]

An email address identifies an email box to which email messages are delivered.

The universal standard for the format and meaning of an email address today is the model developed for Internet electronic mail systems since the 1980s, but some earlier systems, and many proprietary commercial email systems used different address formats.

201 questions
1
vote
1 answer

Gmail valid email address

I came across a very strange feature of Gmail, I am not 100% sure whether it is a feature or not. The below email address are valid for a given email address devank007@gmail.com: devank.007@gmail.com devank0.07@gmail.com How many such cases are…
Devank
  • 159
  • 2
  • 9
1
vote
1 answer

Referencing JS code stored in CSS Content property

UPDATE: After having the code out in the wild for a while, I found two issues on Citrix and iOS Safari. Both seem to be around the use of Eval. The citrix issue could have been resolved by updating the CSS to : emailerrormessage = 'please enable…
1
vote
2 answers

WCAG 2.0 3.3.3 - email address suggestions?

If a user does not fill out the email address by leaving off the @ or domain - and we do not provide an example of a correct email address on submit (example@example.com) does this fail the success criterion for WCAG 2.0 3.3.3 regarding error…
Beth
  • 43
  • 6
1
vote
2 answers

What should I use in bash script to extract email addresses from noisy lines in file?

I have a file that has one email address per line. Some of them are noisy, i.e. contain junk characters before and/or after the address,…
I Z
  • 5,719
  • 19
  • 53
  • 100
1
vote
1 answer

XML Schema for multiple email recipients

I need a sample XSD to support multiple email recipients in a new element. I require each recipient email address in a different element. Can anyone help me with explanation? Example:
Mohan
  • 59
  • 1
  • 7
1
vote
1 answer

c# find outlook contact by email address

I was able to find outlook conctacts by firstname and lastname this way: Outlook.ContactItem contact = (Outlook.ContactItem)contactItems.Find(String.Format("[FirstName]='{0}' or "+ "[LastName]='{0}'", namePart)); Now since I am looking for a…
Shumachine
  • 61
  • 12
1
vote
3 answers

How to write regular expression to match free email accounts?

I'm trying to write a regular expression that checks if an email form field contains a free email address, with no luck. Essentially I need to check if the email contains: hotmail, yahoo, gmail etc in the email field.
user279464
  • 21
  • 1
  • 3
1
vote
1 answer

How do I build FetchXML to give me all members of list A outer joined with all members of list B by emailaddress1

And is that even possible? I have the fetch xml already to filter list B out of list A by record id however I also want the option to filter it by the email address. For example: List A has 2 records. Record 1: Bob@BobMail.com and Record 2:…
Justin williams
  • 574
  • 1
  • 8
  • 26
1
vote
3 answers

String manipulation to create email address from first and last name at least 4 times

This program will is giving me the error message: use of unassigned variable yourName and use of unassigned variable yourIsp. If I take the for loop out it will run. I am trying to ask user for name and isp at least 4 times and create email…
1
vote
7 answers

How can I filter email addresses that belong in a particular domain using Perl?

How can I scan through a file which contains email addresses that are separated by a new line character and get rid of those that belong to a certain domain, e.g. hacker@bad.com. I want to get rid of all email addresses that are @bad.com
John
  • 1,059
  • 4
  • 12
  • 16
1
vote
2 answers

How to parse and normalize an RFC 5322-compliant email address into its components ("John Smith", john.smith+tag, (comment), domain)?

Got the validation part covered. Just looking to parse emails into their components. Assuming an email is valid... Can I just look backward for the first "@" and everything after that is the domain? And then look backward for a space and everything…
Neil McGuigan
  • 46,580
  • 12
  • 123
  • 152
1
vote
1 answer

How does email delivery work between mail servers?

How does an email address actually work? I know how dns translates domain names into IP addresses so that it knows where the person wants to go, but I have no idea how email addresses work. Thanks in advance, Francis
Francis
  • 175
  • 3
  • 12
1
vote
2 answers

Are these valid email addresses?

I found this samples of URL and email address, and found these. 1. user@subdomain.example.com/test/ 2. user:password@subdomain.example.com 3. user:password@subdomain.example.com/test/index.html Are these valid(possible) email addresses?
Flare0n
  • 85
  • 1
  • 7
1
vote
2 answers

hyperlink email address in textbox and send it via Outlook

I am working on a wpf app, and I have a Customer Information section where I can record my customer information. In this section, I use a textbox recording customer's email address. But now I want to make the email address hyperlink and link the…
DanielXu
  • 97
  • 4
  • 14
1
vote
1 answer

Getting EmailAddress NULL from Active Directory (AccountManagement UserPrincipal)

I have a problem and can not find solution: I have the code below to retrieve the e-mail (EmailAddress) user that is accessing the web application. var pc = new…