I've added the following code to our PHP Mail app which sends out emails:

$email_header .= "Disposition-Notification-To: $from"; 
$email_header .= "X-Confirm-Reading-To: $from"; 

However, we are not receiving any 'Delivered' or 'Read' confirmations.

Any thoughts?

Thanks,

H.

link|improve this question

The recipient's mail client decides whether to send confirmations of read and receipt. Most (wisely) choose not to. – George Cummins Feb 15 at 19:42
feedback

3 Answers

up vote 2 down vote accepted

The reason that you are not receiving any confirmations is that most people choose not to send read receipts. If you could, from your server, influence whether or not this happened, a spammer could easily identify active and inactive email addresses quite easily.

However, another reason why this might be failing, if sending read receipts is enabled, is that you need to include a new line at the end of every line:

$email_header .= "Disposition-Notification-To: $from\n"; 
$email_header .= "X-Confirm-Reading-To: $from\n"; 
link|improve this answer
Apologies for the delay in accepting! – Homer_J Feb 16 at 19:48
feedback

I believe the proper header for getting read notifications was Return-Receipt-To:. Also, users usually have the option to ignore the "read receipt", and not send the e-mail back, if the request is not ignored completely.

link|improve this answer
feedback

(maybe not the answer to the question, but the probable answer to what you are trying to achieve is). Your method won't work most of the times as confirmations are usually disabled. Use a image tag to record the email reads in the email. It won't work if the loading of images is disabled.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.