validation for email delivery

Discussion in 'PHP' started by kalaid, Jul 16, 2007.

  1. #1
    Hi,
    There is a number of scripts available for email id validation. But I have never come across such a script that notifies whether the email sent has been delivered to the recipient or not.

    For example, if I send a mail to name@xxx.com there is no script available to tell that whether the mail has been delivered in the Inbox of name@xxx.com or its a bounce back.

    Please help me by showing such a script if it exists.
     
    kalaid, Jul 16, 2007 IP
  2. ansi

    ansi Well-Known Member

    Messages:
    1,483
    Likes Received:
    65
    Best Answers:
    0
    Trophy Points:
    100
    #2
    the best you can do is ensure that there was no error while sending it.
    
    if( mail(....) )
      it was sent
    else
      // failed
    
    PHP:
     
    ansi, Jul 16, 2007 IP
  3. helloman

    helloman Peon

    Messages:
    144
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    0
    #3
    Search Google for help you ll get some scripts for free.
     
    helloman, Jul 16, 2007 IP
  4. kalaid

    kalaid Guest

    Messages:
    33
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #4
    Hi helloman
    Thank's for ur suggestion
     
    kalaid, Jul 16, 2007 IP
  5. lowridertj

    lowridertj Well-Known Member

    Messages:
    2,882
    Likes Received:
    40
    Best Answers:
    0
    Trophy Points:
    195
    #5
    The other way is coding it so that it sends it with a red flag stating that when opened that it is confirmed back to you. however this can cause a great deal of emails on a high traffic site.
     
    lowridertj, Jul 16, 2007 IP