I don't really know how to ask this question so I'll just ask it as best I can. Is it possible to use a proxy connection to read mail from a pop3 or imap server using PHP's imap_open
?
I would prefer to use imap_open
since it's so simple to handle the mail. but, if using imap_open
isn't possible, what other solutions are there? Could CURL or fsockopen
work? I can't seem to find any example showing a connection to pop3/imap behind a proxy in PHP.
Any advice would be very helpful!