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
0
votes
0 answers

How can I discover someone's profile id on facebook using email address?

I have a list of emails and want to discover the associated facebook account. I've been trying to use graph-api in python, but i can't find the person's page link using this api. I was able to find my page's link using my facebook id...but in this…
0
votes
0 answers

How to Anti-Spam: Unhackable Email Aaddress Encoding

Searching for an unhackable email address encoder, I finally found The Enkoder which promises to do just that. It obfuscates emailaddresses for anti-spam purposes in a way that differs from everything I've ever seen before! Albeit in a hefty amount…
Sam
  • 15,254
  • 25
  • 90
  • 145
0
votes
1 answer

regex to get emailaddress with / without display name

In my case, content will come it may contain emailaddress in any of the below format. 1. From : dr-dscsda-ds-info@asdf.com 2. From:sadaedf@sdc.sdfds 3. rom: sdcasdc 4. From: "adads" 5. From:…
Roshan
  • 2,019
  • 8
  • 36
  • 56
0
votes
0 answers

saving email-addresses in database

I've written a login system in PHP, using a MySQL-database. Currently I'm just saving the users' email-addresses as plaintext in the database. But I'm wondering if I would be better off encrypting these email-addresses to decrypt them later on when…
0
votes
1 answer

python: a pre-existing function to parse an email address into a 3-tuple?

I know how to use email.utils.parseaddr to parse an email address such as "Foo" into the following 2-tuple: ('Foo', 'bar@quack.com'). I also know how to use the split() function to turn the address portion into this tuple: ('bar',…
HippoMan
  • 2,119
  • 2
  • 25
  • 48
0
votes
0 answers

Trying to send SMS message to Email, Messenger shows recipient as anonymous

I'm trying to develop an app that sends SMS messages to email addresses. Using the default messaging app on my Note 5, I can enter in my email address as the recipient and send a message no problem. (I have Sprint.) But when I try to do this in…
Kristy Welsh
  • 7,828
  • 12
  • 64
  • 106
0
votes
2 answers

Random Email aliases

i need to create random/pseudo email address that will be delivered to a real email address. Each of my registered client will have a unique & standard pseudo address to send there some specific formated emails. Example…
Stergios Zg.
  • 652
  • 6
  • 9
0
votes
3 answers

function for validating email addresses

I am using this function for validating email addresses, but it doesn’t work if the email address is like this: name@server.com. OR //name@server.com Is there a way to develop this function? function validEmail($email) { $isValid = true; …
Utku Dalmaz
  • 9,780
  • 28
  • 90
  • 130
0
votes
8 answers

PHP email address validation question

I was wondering how can I just check if an @ sign has been included when an email address is entered into the input box? I'm using PHP. Here is my php code. if (isset($_POST['email']) && strlen($_POST['email']) <= 255)
HELP
  • 14,237
  • 22
  • 66
  • 100
0
votes
1 answer

Is there a web-standards method of suppressing mailto: linkification?

When Gmail opens a message containing a bare email address that does not have mailto: link, it "helpfully" turns it into a mailto: link, there is unwanted change of the text styling too. Is there a web standards tag that authors (such as email…
Doochz
  • 1,039
  • 2
  • 14
  • 25
0
votes
5 answers

php regular expression : How to fetch all the email address in a paragraph

I want to fetch all the email address in a paragraph. could you please help me Thanks a lot
john
  • 535
  • 7
  • 23
0
votes
2 answers

spring social Facebook 2.0.2 cannot get email

I am using Spring social Facebook framework 2.0.2 and I am accessing an Facebook app version 2.5. I, somehow, cannot grab the email address of the user that is authenticating via the fetchObject method. @RequestMapping("/register/facebook") public…
Mathieu Stn
  • 168
  • 1
  • 9
0
votes
2 answers

Best form field validation pattern for email at all latest browsers

I want a email validation pattern for all latest browsers. The field type must be in text, not in email. I tried the different type of patterns like below, but not working in all browsers.…
saravankg
  • 909
  • 1
  • 10
  • 21
0
votes
1 answer

javax.mail.internet.InternetAddress RFC 822 validation

I would assume that the following would throw but it doesn't. new javax.mail.internet.InternetAddress( "a@b......." ).validate My javax.mail version is 1.4. (and java version 8 if it matters). Is this a valid email address according to RFC822 which…
0fnt
  • 8,211
  • 9
  • 45
  • 62
0
votes
1 answer

How to collect e-mail addresses from a click of a button?

My team and I are currently exploring different methods of collecting email addresses from our website visitors. We want to do something cooler than a contact forms, and we really like the way quicksprout.com handles this and would like to do the…
Vitaliy G.
  • 851
  • 1
  • 7
  • 20