当前位置:Gxlcms > PHP教程 > pop3邮件收取一例_PHP教程

pop3邮件收取一例_PHP教程

时间:2021-07-01 10:21:17 帮助过:11人阅读

test_pop3.php(做为现在的主流开发语言)



Test for Manuel Lemoss php<font class=reblank>(做为现在的主流开发语言)</font> POP3 class


require("pop3.php(做为现在的主流开发语言)");

$user="user";
$password="passwd";
$apop=0;
$pop3_connection=new pop3_class;
$pop3_connection->hostname="mail.xiaocui.com";
if(($error=$pop3_connection->Open())=="")
{
echo "
Connected to the POP3 server "$pop3_connection->hostname".
";
if(($error=$pop3_connection->Login($user,$password,$apop))=="")
{
echo "
User "$user" logged in.
";
if(($error=$pop3_connection->Statistics(&$messages,&$size))=="")
{
echo "
There are $messages messages in the mail box with a total of $size bytes.
";
$result=$pop3_connection->ListMessages("",0);
if(GetType($result)=="array")
{
for(Reset($result),$message=0;$message echo "
Message ",Key($result)," - ",$result[Key($result)]," bytes.
";
if($messages>0)
{
if(($error=$pop3_connection->RetrieveMessage(1,&$headers,&$body,-1))=="")
{
echo "
Message 1:
---Message headers starts below---
";
for($line=0;$line echo "
",HtmlSpecialChars($headers[$line]),"
";
echo "
---Message headers ends above---
---Message body starts below---
";
for($line=0;$line echo "
",HtmlSpecialChars($body[$line]),"
";

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/509051.htmlTechArticletest_pop3.php (做为现在的主流开发语言) HTML HEAD TITLETest for Manuel Lemoss php (做为现在的主流开发语言) POP3 class/TITLE /HEAD BODY ? require("pop3.php (做为...

人气教程排行