I have been asked to quote a project where they want to see sent email using POP. I am pretty sure this is not possible, but I thought if it was.
So is it possible given a users POP email server details to access their sent mail?
If so any examples in Python or fetchmail?
POP3 only handles receiving email; sent mail is sent via SMTP in these situations, and may be sent via a different ISP to the receiver (say, when you host your own email server, but use your current ISP to send). As such, this isn't directly possible.
IMAP could do it, as this offers server side email folders as well as having the server handle the interface to both send and receive SMTP traffic