Re: [PHP] Mail with acknowledgement of delivery

2005-04-05 Thread Richard Lynch
On Wed, March 30, 2005 8:31 am, marc serra said: I got a problem with mail function. I want to know if it's possible to send a email in php and to get back an acknowledgement of delivery. My problem is that i want to know if my emails are delivered successfully to recipients. Can you please

[PHP] Mail with acknowledgement of delivery

2005-03-30 Thread marc serra
Hi, I got a problem with mail function. I want to know if it's possible to send a email in php and to get back an acknowledgement of delivery. My problem is that i want to know if my emails are delivered successfully to recipients. Can you please tell how to do this if there is a solution.

Re: [PHP] Mail with acknowledgement of delivery

2005-03-30 Thread Leif Gregory
Hello marc, Wednesday, March 30, 2005, 8:31:48 AM, you wrote: m I got a problem with mail function. I want to know if it's possible m to send a email in php and to get back an acknowledgement of m delivery. My problem is that i want to know if my emails are m delivered successfully to recipients.

Re: [PHP] Mail with acknowledgement of delivery

2005-03-30 Thread Markus Mayer
The mail() function allows you to specify additional headers that go into the mail. Delivery acknowledgement is done using specific headers, the exact format of which I don't know off hand. You will have to find the exact formatting information yourself, however this is the way to go. Markus