i'm new in php. I want to send an email to someone and afterwards i need to check if this mail could be received. How do i do that? Hope you guys understand my problem ;). Thanks in advance. Marc
|
|
That's a really sticky question. The only real way is to have PHP monitor an inbox to check for "undeliverable message" notices you might get back. If you're really wanting to go forward with it, look into POP3 connectors for PHP. Like this: http://pecl.php.net/package/POP3
You technically wouldn't need a compiled PHP extension for POP3 (especially if you're new to PHP)... you could connect and read messages by opening a socket and speaking mail server: http://www.adamsinfo.com/a-rudimentary-php-pop3-example/ Edit (years later):Definitely check out http://mailgun.net/, http://sendgrid.com/, and http://postmarkapp.com/. |
||||
|
|
|
If you're sending HTML mails, you could use a little trick:
This won't work though, if the mail client does not download images from the internet when showing an email, as Thunderbird does, for example (IIRC Outlook does so too) |
|||
|
|
There is no definite solution for this. Web bugs are a o.k. idea but they're dying out, as they are very problematic security wise and are blocked by default in every current E-mail client I know of. I would suggest a combination of checking a bounce inbox like brianreavis suggested, and in addition, requesting a delivery receipt using the following header line:
That way, you can get most negatives (bounced mails) as well as many positives (receipts). Sending the receipt can be blocked by the sender, but together with parsing error notifications, you should have fairly reliable system. |
|||
|
|
|
There is a perfect solution, in terms of knowing the eMail has been read. The bad part is that the body of the eMail must be stored on web server. The trick: -Send an eMail just just a small text and a URL, so the user must go to that URL to read de content of the eMail. In other words... on the eMail there is nothing about what you want to send, there is only a link to a unique page you create before sending such eMail. So to read the content the user must open a web browser and go to such URL. The trick is to put a little of such text on eMail... something like: bla, bla, bla ... press here to read more. The concept: Online body, offline URL to access such body. That way you can be sure of this: if URL has been read, the eMail has been read. The bad part is that the info you want to send is not on the eMail, must be on a unique webpage. So you must control no robot can go to such URL... for example with URL like: https://server/private/?eMail_Body=user Hope this idea can help someone. |
|||
|
|
|
One option is a Web Bug but these are far from 100% reliable, and are arguably not a nice way to behave. It won't differentiate between emails which are unread and those which are undelivered, for example because of a bad email address, and it is possible to read an email containing a Web Bug without triggering it. In short you create an HTML email containing an element which has a URL on your site which is unique to that email. So if a client accesses that URL you can be sure that someone has read your email. Wikipedia gives this example:
However, it is possible - probably quite likely - that someone can read your email without connecting to that URL. This may because:
This is a often used option - both by spammers and more responsible marketers - but I probably wouldn't recommend it unless you fully understand its limitations and implications in terms of what people might think of you if you do use it. |
||||
|
|