How to contact a mail server?

Ask a Question related to Coldfusion - Getting Started, Design and Development.

  1. #1

    Default How to contact a mail server?

    In a form there is a text box for an email address ? is there a way to validate
    the email address, or to contact the mail server, to find out if the email
    address is legitimate?

    Does the tag cfhttp do it? if yes, the how. Can someone please point me to
    some good articles?

    I want to code this, not buy it.

    Here?s a good [url]http://verify.addresses.com/email_verify.php[/url].

    Thanks.


    Sammy S Guest

  2. Similar Questions and Discussions

    1. Need to stop Acrobat from attempting to contact network server
      Hello: I'm hoping someone will have a solution to my problem. I attempted to start a "Shared Review" in Acrobat. I used a Windows network server to...
    2. Setting up CF mail server to connect to ISP mail server
      I would like to setup a testing evironment and use my ISP's mail server to test and create CF mail applications. When I tried connecting to the...
    3. UltraSuite Customers: Please contact me for a full refund (or I'll contact you within the next day or so)
      Folks, If you have paid for any UltraSuite product and have not yet received it, I sincerely apologize for that. If you'd like a full refund...
    4. E-mail contact
      How would I go about putting a link to my email address - so that users could contact me via email with a "click" of a button? Thanks.
    5. Contact to sql server from a seperate box
      Hi, well, I guess this question has been asked before but all of the solutions that I have gone with have failed so I am appealing for help. I...
  3. #2

    Default Re: How to contact a mail server?

    If you are just wanting to make sure the email address entered follows the
    email formatting rules, you can add the validate attribute to the text box. If
    you are wanting to check and see if it even exists on that mail server, cfldap
    might be what you need.

    rmorgan Guest

  4. #3

    Default Re: How to contact a mail server?

    Thank you rmorgan...

    It seems that cfldap is what I need to use. I read about it in the book
    'Developing ColdFusion MX Applications with CFML', provided with the CF
    documentation, but I need more information on available LDAP servers and how to
    query them.

    For example, if I have the email address [email]someone@somewhere.com[/email], who do I
    contact to find out if the domain name 'somewhere.com' is a valid domain name,
    and then who do I query to find if 'someone' is a registered user. (or if the
    '@somewhere' is setup as a catch-all email address)?

    Can you help?

    Again, thanks.



    Sammy S Guest

  5. #4

    Default Re: How to contact a mail server?

    I dont think you are going to be able to actually pull all of that off, since
    you will be trying to query someone elses user base. You will not have
    permission into their system, and I would be willing to bet they would not be
    willing to give out info about their users.

    rmorgan Guest

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139