繁体中文
设为首页
加入收藏
当前位置:ASP技术首页 >> ASP基础 >> 利用W3 JMAIL组件收POP3邮件

利用W3 JMAIL组件收POP3邮件

2006-05-15 08:00:00  作者:  来源:互联网  浏览次数:0  文字大小:【】【】【
关键字:组件 邮件 JMAIL POP3

<%

dim startpage

dim endpage

startpage=int(request("start"))

endpage=int(request("end"))

Set pop3 = Server.CreateObject( "JMail.POP3" )

uid=trim(request("uid"))

pwd=trim(request("pwd"))

pop=trim(request("pop"))

if uid="" or pwd="" or pop="" then

response.redirect "receivemail.ASP"

end if

if uid"" and pwd"" and pop"" then

response.cookies("uid")=trim(request("uid"))

response.cookies("pwd")=trim(request("pwd"))

response.cookies("pop")=trim(request("pop"))

else

uid=request.cookies("uid")

pwd=request.cookies("pwd")

pop=request.cookies("pop")

end if

pop3.Connect uid, pwd,pop

'pop3.Connect "agang0084", "921028", "pop3.sina.com.cn"

response.write "

"

Response.Write( "您的收件箱有 " & pop3.count & " 封邮件

" )

response.write ""

'计算页数

pagenum=10 '一页共存几条记录

if pop3.count

pagecount=1

else

intcount=int(pop3.count/pagenum)

modcount=pop3.count mod pagenum

if modcount>0 then

pagecount=intcount+1 '如果总记录除以一页可存放的记录数有余数则页数必须加以一

else

pagecount=intcount

end if

end if

response.write ("您的邮件共有"&pagecount&"页 ")

'计算页码

page=trim(request("page"))

if page"" then

select case page

case "firstpage"

startpage=1

endpage=pagenum

case "lastpage"

startpage=(pagecount-1)*pagenum+1

endpage=pop3.count

case "next"

if endpage+10 > pop3.count then

startpage=(pagecount-1)*pagenum+1

endpage=pop3.count

else

startpage=startpage+10

endpage=endpage+10

end if

case "back"

if startpage=pagenum+1 then

startpage=1

endpage=pagenum

else

startpage=startpage-10

endpage=endpage-10

end if

end select

else

if pop3.count

startpage=1

endpage=pop3.count

else

startpage=1

endpage=pagenum

end if

end if

if pop3.count > 0 then

dim msg(20)

dim Attachments(20)

for i=1 to pop3.count

Set msg(i) = pop3.Messages.item(i)

Set Attachments(i) = msg(i).Attachments

next

%>

主题:

ASP?messageid=">删除

发件人:

ASP?mailto="> 点击地址回复信件

附件个数:

接收附件

正文:

责任编辑:admin
相关文章