简体   繁体   中英

Is it possible to Access a Users Sent Email over POP?

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

Pop doesn't support sent email. Pop is an inbox only, Sent mail will be stored in IMAP, Exchange or other proprietary system.

Emails are not sent using POP, but collected from a server using POP. They are sent using SMTP, and they don't hang around on the server once they're gone.

You might want to look into IMAP?

smtp(邮件发送)服务器可以将所有已发送邮件的副本转发回发件人,然后他们可以通过弹出窗口访问它。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM