How to verify if an Yahoo ID is valid or not?

Discussion in 'Programming' started by redhits, Feb 23, 2010.

  1. #1
    is there any way i can verify if an yahoo id is valid or not?
     
    redhits, Feb 23, 2010 IP
  2. darkblade

    darkblade Peon

    Messages:
    187
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #2
    You can send an verification email to their yahoo id, which should be an email address too right?
     
    darkblade, Feb 23, 2010 IP
  3. redhits

    redhits Notable Member

    Messages:
    3,023
    Likes Received:
    277
    Best Answers:
    0
    Trophy Points:
    255
    #3
    Nope, i need something much faster then that
     
    redhits, Feb 23, 2010 IP
  4. darkblade

    darkblade Peon

    Messages:
    187
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #4
    You can sending an email such as an welcome message and if it returns an error, such as miss delivery or something, then you know the email is fake.
    http://php.net/manual/en/function.mail.php

    ex(not actually code).
    if(mail()) {}
    else {
    echo invalid email
    }
     
    darkblade, Feb 23, 2010 IP
  5. danx10

    danx10 Peon

    Messages:
    1,179
    Likes Received:
    44
    Best Answers:
    2
    Trophy Points:
    0
    #5
    You can use regex:

    <?php
    $ymail = "danx10@digitalpoint.com";
    if(preg_match("/^([a-z0-9_]{4,}|[a-z0-9_]{4,}@yahoo\.[a-z\.]{2,})$/i", $ymail)){
    echo "Valid";
    } else {
    echo "Invalid! Yahoo ID";
    }
    ?>
    PHP:
    Enjoy ;)
     
    danx10, Feb 23, 2010 IP
  6. redhits

    redhits Notable Member

    Messages:
    3,023
    Likes Received:
    277
    Best Answers:
    0
    Trophy Points:
    255
    #6
    redhits, Feb 24, 2010 IP
  7. robyries

    robyries Notable Member

    Messages:
    3,230
    Likes Received:
    51
    Best Answers:
    6
    Trophy Points:
    205
    Digital Goods:
    1
    #7
    try to sent an email to the address,... if there's no respon,.. is valid then other wise.... got notification
     
    robyries, Feb 24, 2010 IP
  8. redhits

    redhits Notable Member

    Messages:
    3,023
    Likes Received:
    277
    Best Answers:
    0
    Trophy Points:
    255
    #8
    Hey , i need to this live from the web :|
     
    redhits, Feb 24, 2010 IP
  9. jijieyz

    jijieyz Guest

    Messages:
    22
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #9
    You can't.
     
    jijieyz, Mar 26, 2010 IP
  10. NeoCambell

    NeoCambell Peon

    Messages:
    456
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    0