Re: Verify if an email address exists.

2010-09-08 Thread Alex Dean


On Sep 8, 2010, at 12:22 AM, Dan Dubovik wrote:

If you want to know if a specific email address is available, you  
can try to send an email to the address, and note the response code  
after sending it.  Using php, you can use the mail() function,  
however, the error message it returns is binary in nature, either it  
sends or not, without a real reason why it failed to send.


That tells you if PHP was able to hand the message off to the local  
MTA (sendmail/postfix/etc).  It doesn't give any indication of whether  
the destination address is valid or not, unfortunately.


Keith: The only sure way I know of to tell if an address is valid or  
not is to send a 'please reply to this message' email, and see if you  
get a response or not.  And (as mentioned by others) that's not a  
guarantee that the address you sent to is actually the address which  
the email was delivered to.  Aliases, catch-all accounts, etc can all  
play a part.


alex

---
PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
To subscribe, unsubscribe, or to change your mail settings:
http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss


Re: Verify if an email address exists.

2010-09-07 Thread AZ RUNE
For quicky help dirtsearch.org, .com something like that

Brian

On Tue, Sep 7, 2010 at 6:07 PM, keith smith klsmith2...@yahoo.com wrote:


 I would like to verify email addresses to verify if the actually exist.  I
 seem to recall doing a reverse lookup.  Is that possible?  I would like to
 do this in PHP if possible.  Google returns no real help.

 Thanks in advance.

 
 Keith Smith

 ---
 PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
 To subscribe, unsubscribe, or to change your mail settings:
 http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss




-- 
Brian Fields
arizona.r...@gmail.com
---
PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
To subscribe, unsubscribe, or to change your mail settings:
http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss

Re: Verify if an email address exists.

2010-09-07 Thread Dan Dubovik
Sort of depends on what you are looking for.  There are some domains that
have a catch all, so may not go to the specific address you mail to.

What are you wanting to accomplish with this?  If you want to know if you
can send mail to a specific domain, you can open a socket to the domain on
port 25 (assuming you have outbound port 25 available to you from your
location).

If you want to know if a specific email address is available, you can try to
send an email to the address, and note the response code after sending it.
Using php, you can use the mail() function, however, the error message it
returns is binary in nature, either it sends or not, without a real reason
why it failed to send.

-- Dan.

On Tue, Sep 7, 2010 at 6:09 PM, AZ RUNE arizona.r...@gmail.com wrote:

 For quicky help dirtsearch.org, .com something like that

 Brian

 On Tue, Sep 7, 2010 at 6:07 PM, keith smith klsmith2...@yahoo.com wrote:


 I would like to verify email addresses to verify if the actually exist.  I
 seem to recall doing a reverse lookup.  Is that possible?  I would like to
 do this in PHP if possible.  Google returns no real help.

 Thanks in advance.

 
 Keith Smith

 ---
 PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
 To subscribe, unsubscribe, or to change your mail settings:
 http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss




 --
 Brian Fields
 arizona.r...@gmail.com


 ---
 PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
 To subscribe, unsubscribe, or to change your mail settings:
 http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss

---
PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us
To subscribe, unsubscribe, or to change your mail settings:
http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss