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
1 answer

Need help checking if to emails are part of the same domain?

Background information: I need to make a system that lets users log in by identifying themselves with an email address/password combination. So I'm trying to find a way to check that the login matches something in the database, when the two may be…
Patrick Jeeves
  • 371
  • 2
  • 16
0
votes
1 answer

Confirm email doesn't work in asp.net mvc

using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.ComponentModel.DataAnnotations; using WebValidation.Common; using System.Web.Mvc; namespace WebValidation.Models { …
Leah
  • 15
  • 1
  • 6
0
votes
2 answers

Android - Email someone given a userid using Facebook Graph API?

I have an app that lets users search for items other users have put up for sale. I would like to be email to the owner/seller from the buyer using Facebook IDs. I'm using Android and the Facebook Graph API for my app. I have managed to get a user's…
adrian
  • 2,786
  • 2
  • 18
  • 33
0
votes
2 answers

Capitalisations in Email Address

I have sent a mail to an address with a suffix of @rediffmail. But instead i wrote @Rediffmail. As you can see the 'R' is capitalized when it is not supposed to be. What I want to ask is that will the email still reach the recipient? I tried…
user3836461
0
votes
1 answer

RFC 822 email address validation in java

how is possible in Java validate email address by RFC 822? Are there any available official regular expression for full support RFC822? Thank you for your help.
peterko
  • 503
  • 1
  • 6
  • 18
0
votes
2 answers

Regex seems to be wrong - cannot find e-mail

I have a problem with my function that is trying to find an e-mail addresses. I have no idea what can be the problem :( static int contains_mail(const unsigned char *buffer, int length, int detmode) { const char *reg_exp =…
user3612491
  • 223
  • 3
  • 7
0
votes
3 answers

Regex to accept one or more characters before @

I have the following email REGEX validation. ([a-zA-Z0-9_\-\.]+)([a-zA-Z0-9])@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.)|(([a-zA-Z0-9\-]+\.)+))([a-zA-Z]{2,4}|[0-9]{1,3}) when I test it doesn't allow emails with single character before @.e.g…
TMAN-MAN
  • 141
  • 1
  • 2
  • 13
0
votes
1 answer

create link to users email domain php

User signs up on website, site sends out automated activation email and echos the following onto the signup page: Thank you for signing up! Please check your email here for an activation email... Is it at all…
Wildcard27
  • 1,437
  • 18
  • 48
0
votes
2 answers

Parse email address

I am writing VBA code in Outlook 2007 to extract email address from emails. I am able to read the body as a whole through a variable How do I extract email address from the variable?
0
votes
1 answer

JavaScript/CSS: Remove white space when copying

I'm currently exploring ways to hide mail addresses from spam bots. I don't want to insert pictures. JavaScripting to hide addresses and decrypt them onclick is a neat option, but then I also want people to be able to hightlight the address and then…
Momro
  • 971
  • 1
  • 10
  • 16
0
votes
1 answer

get list of email addresses in email client using Account in android

I want to fetch list of email addresses from user's email client in my android app. So, that before sending an email through app user is presented with the list of email addresses and he can just select the ones he want to send the email. I am aware…
Sheetal Jadhwani
  • 75
  • 1
  • 3
  • 9
0
votes
1 answer

PHP Encode an email address hide from spammers, decode easily without flaws?

What PHP function or encoding method could allow you to convert an email address to a set of characters, then decoded again when needed? The email address would be publicly available to a certain program/audience, which handles conversions, but…
Orangeman555
  • 1,179
  • 2
  • 21
  • 45
0
votes
3 answers

Get mail address from iPhone/iPad setting area through Xcode

I am trying to get email id and other details from iPhone/iPad setting area to my code using objective c. Any suggestion would appreciated. Thanks in advance.
0
votes
1 answer

how do i make this form (sleek contact form) send to multiple recipients?

I'm looking to make a contact form send to more than 1 address. currently the code is $to = 'email@email.com'; Further down the code is function xmail($to,$subject,$message,$headers){ global…
user1019002
  • 41
  • 1
  • 7
0
votes
3 answers

Retrieve facebook friends & invite them to my iOS app

I am developing an iOS application in which I want to retrieve my facebook friends & send it to server for checking who are already using this app using their email or phone number. Once I get friends who are not using my application then I will…
iOSAppDev
  • 2,755
  • 4
  • 39
  • 77