|
-
May 24th, 2007, 11:46 AM
#1
Thread Starter
Frenzied Member
bounced back email?
Hello, is there a way to tell if the email that I used from my page send to the user correctly? I mean is there a way we can tell if the user's email is invalid email so that when I send info to them using PHP mail, I will get something bounced back to my email or display on the webpage?
-
May 24th, 2007, 04:15 PM
#2
Re: bounced back email?
Nope. That's the SMTP server's job.
There is a way to verify if an email address exists (that does not guarantee delivery/bounce), but it involves sending a socket stream. I don't know if PHP has socket streams, so someone can step in here.
-
May 24th, 2007, 10:35 PM
#3
Thread Starter
Frenzied Member
Re: bounced back email?
what you mean to verify if an email address exists?
-
May 25th, 2007, 01:56 AM
#4
Re: bounced back email?
With sendmail you can redirect certain emails through a program, so if you fix your reply-to address to a send mail installation, you can send all emails to the PHP script including delivery failures.
-
May 25th, 2007, 12:08 PM
#5
Thread Starter
Frenzied Member
Re: bounced back email?
I am not quite understanding visualaid, what do you mean? and how can I accomplish that?
-
May 26th, 2007, 05:02 PM
#6
Hyperactive Member
Re: bounced back email?
when you send an e-mail, you will get a bounce. Configure your app to check the e-mail on the server of the address it will bounce back to. However, there might be some server configuration do handle that since you are sending the mail from a php script.
anyway, after you check the e-mail, parse it and determine if it is a bounce.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|