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
16
votes
4 answers

How to copy email address in outlook 2007

I use MS Office Outlook 2007, and sometimes it converts email address as "FirstName LastName". When double click, it opens Contact form, but nowhere email address to copy into clipboard. How is it possible to copy to clipboard email address if it…
ihorko
  • 6,855
  • 25
  • 77
  • 116
11
votes
9 answers

Regular Expression for domain from email address

Can anyone help me with a regular expression that will return the end part of an email address, after the @ symbol? I'm new to regex, but want to learn how to use it rather than writing inefficient .Net string functions! E.g. for an input of…
TimS
  • 5,922
  • 6
  • 35
  • 55
9
votes
1 answer

Historically, why were the RFCs about email addresses made so complicated?

RFCs 5321, 5322 and 6531 have complex rules for validating email addresses. They: allow creating comments inside an email address offer complicated restriction rules for symbols: "() ,:;<>@[\] treat postmaster localpart as case-insensitive but all…
Andrei Botalov
  • 20,686
  • 11
  • 89
  • 123
9
votes
2 answers

Facebook API: is it possible to get a user's public profile data by email address?

Possible Duplicate: Find Facebook user (url to profile page) by known email address I have a list of email addresses from people that use my app. Is it possible to query for their facebook public data by email address? Thanks Richard.
Richard H
  • 38,037
  • 37
  • 111
  • 138
9
votes
2 answers

Absolute email address on Jekyll

I am writing the contact page of my blog. When I put the email address in markdown format [contact me] (myname@gmail.com) Jekyll sees the email address as a relative path and auto-completes it to localhost:4000/myname@gmail.com locally or…
Sophia Feng
  • 993
  • 11
  • 16
8
votes
4 answers

get-aduser using emailaddress

when i want to get some information from an user i use this: Get-ADUser -Filter {EmailAddress -eq 'jperez@dominio.com'} but when i wanna check the information from a bulk of users i try this: $batch| foreach {Get-ADUser -Filter {emailaddress -eq…
Hans Torres
  • 81
  • 1
  • 1
  • 2
7
votes
3 answers

Send Email to Multiple Addresses Android

I want to select a number of email addresses and then send an email to all of them. My code is as below: emailIntent .putExtra(android.content.Intent.EXTRA_EMAIL,new String[]{listofemailaddresses}); emailIntent…
SoH
  • 2,180
  • 2
  • 24
  • 53
6
votes
1 answer

How many sub-domain are allowed for an Email Id?

How many subdomains are possible for an Email address? For Example: something@something.co.uk.uk like that....
Yoko Zunna
  • 1,804
  • 14
  • 21
6
votes
2 answers

Parse RFC 2822 email addresses in Java

As many people are unaware, email addresses require a library to parse. Simple regexes, like @(.*), are not sufficient. Email addresses can even contain comments, which can contain characters like @, breaking simple regexes. There is a Node.js…
djechlin
  • 59,258
  • 35
  • 162
  • 290
6
votes
2 answers

.NET SmtpClient: Is there a way to make sure that all emails resolve prior to sending MailMessage?

I am using SmtpClient to send an email to multiple recipients. As employees leave the company, their email addresses become invalid. Since their email addresses remain in our database until deleted manually, trying to send an email to them causes…
oscilatingcretin
  • 10,457
  • 39
  • 119
  • 206
5
votes
3 answers

Email validation with particular extensions?

form code:
User2413
  • 605
  • 6
  • 22
  • 51
4
votes
3 answers

iOS / Swift: Showing email addresses suggestions on keyboard for UITextFields

In one of our iOS / iPhone Apps we need to display the user's configured email addresses as suggestions during the registration process. There are several apps that display email addresses as fixed buttons within the input accessory view of the…
Dimitri
  • 191
  • 2
  • 9
4
votes
1 answer

mongodb find duplicates in array across documents

Having an array of emails on a document. How would we find another document in the same collection that shares at least one email in common? Essentially we have a contacts collection and each contact document has an array of emailAddresses[]. We…
Brock
  • 71
  • 4
4
votes
1 answer

coding for email address validation in xamarin.android visual studio 2015?

what is the coding of email address validation using C# in xamarin.android visual studio 2015 and also tell me if any name space is requried? please tell me all the imp step as well as coding for email address validation in edittext. i am new in…
shumeza
  • 99
  • 1
  • 2
  • 8
4
votes
1 answer

Are email addresses without "mailto:" allowed as IRIs?

In the RDF Turtle documentation from W3C I came across two examples (16 and 17) where an email address was used as an IRI: _:b . As I understand it, email addresses are allowed as URIs when…
Dieudonné
  • 543
  • 1
  • 4
  • 16
1
2
3
13 14