pop3类下载(http://download.youkuaiyun.com/detail/truered/9234227)
#include "pop3.h"
void Receive()
{
// TODO: 在此添加控件通知处理程序代码
CPop3 pop3;
char userName[256] = "***@163.com";
char password[256] = "***";
char srv[256] = "pop.163.com";
pop3.Create(userName, password, srv, 110);
if (pop3.Connect())//连接pop3服务器
{
if (pop3.Login())
{
pop3.List(sum);
if (sum < 0)
printf("You have no letter in box !");
for (int i = 1; i <= sum; i++)
{
pop3.FetchEx(i);
}
}
}
pop3.Quit();
}
VC获取邮件存为eml文件到本地
最新推荐文章于 2018-05-19 10:53:49 发布