I'm developing a little email sender portal that allows registered users to send some amounts of emails. I use a secure connection with an SMTP server installed on localhost (I mean same server of Apache and PHP) to send the emails and I have implemented a system to take control on the amounts of emails sent (I schedule the sending of the emails to avoid sending too much emails at the same time).
I use PHPMAiler class to send the emails and a class of my own to schedule them.
The only thing I miss is to track the emails I've sent to know if some errors occured (and which error in particular ie. address not found, recipient mailbox full, etc...) and to know if the user opened the email and when.
I admit that I actually know almost nothing about SMTP servers, but I'd like to know if there are some resources where I can find a PHP class that can talk to the SMTP server to ask it for the sent emails, or if there's any way in PHP to retreive sent emails information.... or anything else that could be useful for my purposes.