Results 1 to 7 of 7

Thread: Email Verifier

  1. #1

    Thread Starter
    New Member
    Join Date
    May 2010
    Posts
    5

    Question Email Verifier

    Hi I would like to know if there is any way that you can verify that a email address actually exists like using this tool: http://verify-email.org/. Can someone please help me with this i'am new to porgramming in general and would like to wirte an application that does this in visual basics.

    Thanks Please help me!

  2. #2
    Registered User
    Join Date
    Jul 2009
    Posts
    71

    Re: Email Verifier

    A small search resulted in the following code:
    Code:
    Function IsEmail(Byval email as string) as boolean
        Static emailExpression As New Regex("^[_a-z0-9-]+(.[a-z0-9-]+)@[a-z0-9-]+(.[a-z0-9-]+)*(.[a-z]{2,4})$")
    
        return emailExpression.IsMatch(email)
    End Function

  3. #3

    Thread Starter
    New Member
    Join Date
    May 2010
    Posts
    5

    Re: Email Verifier

    I know how to make sure it's in the correct format but I want to actually see if it exists. But thanks for your help anyway

  4. #4
    Registered User
    Join Date
    Jul 2009
    Posts
    71

    Re: Email Verifier

    Oh I'm sorry, I misread. I don't know the solution I'm afraid.

  5. #5

    Thread Starter
    New Member
    Join Date
    May 2010
    Posts
    5

    Re: Email Verifier

    me neather, but I need it so bad. Got a company that wants me to write a program to verify all their emails before they get sent.

  6. #6
    Registered User
    Join Date
    Jul 2009
    Posts
    71

    Re: Email Verifier

    This might be interesting:
    http://vbcity.com/forums/t/148422.aspx
    but it provides no solution.

  7. #7

    Thread Starter
    New Member
    Join Date
    May 2010
    Posts
    5

    Re: Email Verifier

    thanks

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width