|
Thanks for your confidence in my abilities! :-) In fact I do know the answer. If you're only looking at POP3 protocol and developer information, you won't find anything with a SEND function. And that is because Post Office Protocol v3 (POP3) is a client-based e-mail protocol that receives, not sends, e-mail.
For sending you'll want to look at the Simple Mail Transfer Protocol (SMTP). If you've done the POP3 bit, you should have no problem doing the SMTP side of things. It's basically just reading from and writing to a socket using a protocol. You can find details on the SMTP protocol in RFC 2821 and 2822. There are also some SMTP extension RFCs you might want to peruse, as well.
|