Page 1 of 1

PHP mail

Posted: Wed Jul 22, 2009 7:44 am
by Elivs
Hi all,

I realised that I dont have to google everytime I have a problem with my PHP.

Anyway, the problem I am having is this:

I am sending html mails encoded on PHP to multiple recipients(approximately 50). I copy the email addresses from a word document containing 500 or so email addresses. So, the problem is; how do I know which ones received the mail?
As in I need a confirmation that this number has received while the message could not be sent to so and so, like any other mail client does when u send mail to unexisting email address.

Re: PHP mail

Posted: Thu Jul 23, 2009 2:58 am
by omniuni
The error mails are not provided by your client, rather, by the outgoing mail server (SMTP) which sends mails back to the sender if it fails. Check your servers mail logs to see if there are any returned messages, or make sure that your "from" and "reply-to" is set correctly in your mails, so you can see any errors that come back to you.

Good Luck.