利用W3 JMAIL元件收POP3郵件 (轉)
dim startpage
dim endpage
startpage=int(request("start"))
endpage=int(request("end"))
Set pop3 = Server.Create( "J.POP3" )
uid=trim(request("uid"))
pwd=trim(request("pwd"))
pop=trim(request("pop"))
if uid="" or pwd="" or pop="" then
response.redirect "receiv."
end if
if uid<>"" and pwd<>"" and pop<>"" then
response.("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
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
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
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
%>
if startpage=1 then
response.write "第一頁 "
else
response.write "第一頁 "
end if
if endpage=pop3.count then
response.write "下一頁 "
else
response.write "下一頁 "
end if
if startpage=1 then
response.write "上一頁 "
else
response.write "上一頁 "
end if
if endpage=pop3.count then
response.write "最後一頁 "
else
response.write "最後一頁 "
end if
response.write "當前記錄是從第"
response.write startpage
response.write "封到"
response.write endpage
response.write "封的信件"
response.write "
"
response.write "
"
%>
主題: | | |
發件人: | 點選地址回覆信件 | |
附件個數: | 接收附件 | |
正文: | ||
end if
pop3.Dinnect
%>
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/10748419/viewspace-997070/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 使用W3 JMail實現郵件傳送的解決方案(2) (轉)AI
- 使用W3 JMail實現郵件傳送的解決方案(3)(完) (轉)AI
- 自制Pop3郵件接收系統(二):利用TcpClient得到Pop3的郵件列表資料 (轉)TCPclient
- 利用ASP+JMAIL進行郵件群發的新思路 (轉)AI
- ASP用JMail、CDO傳送郵件 (轉)AI
- Python使用POP3和SMTP協議收發郵件Python協議
- 用Jmail元件發郵件錯誤的解決辦法薦AI元件
- 利用Jmail傳送帶附件的郵件時亂碼的解決方案AI
- 自制Pop3郵件接收系統(一):利用MatchEvaluator實現HZ的解碼 (轉)
- 利用SQL Server發郵件 (轉)SQLServer
- 編寫基於的POP3的電子郵件程式 (轉)
- 郵件協議之POP3的講解協議
- 郵件開發:POP3協議詳解協議
- 用 C++BUILDER 實現 POP3 電子郵件的接收 (轉)C++UI
- 對POP3郵箱中的新郵件的判斷方法
- postfix郵件系統之郵件客戶端無法收郵件問題解析客戶端
- C#通過POP3獲取郵件(正文和附件)C#
- C#使用 MailKit 收發郵件C#AI
- 如何利用PHP通過mail方法傳送郵件【轉】PHPAI
- 利用命令列發郵件命令列
- foxmail能收郵件,但是無法傳送郵件的問題AI
- 為什麼起床後不能收郵件?
- 在Foxmail中收發Yahoo!郵件AI
- linux mail利用外部郵箱地址發郵件LinuxAI
- 利用UTL_SMTP傳送郵件
- Outlook和Outlook Express導致超時錯誤並且無法檢索POP3郵件 (轉)Express
- 在FoxMail裡收發ZohoMail的郵件AI
- 可怕的ASP.NET郵件元件ASP.NET元件
- 利用SQL Server 2005資料庫郵件傳送電子郵件SQLServer資料庫
- 利用Oracle資料庫傳送郵件Oracle資料庫
- C# - MailSender 郵件傳送元件原始碼 (支援ESMTP, 附件) (轉)C#AI元件原始碼
- iphone 6s自帶郵箱收發郵件設定教程iPhone
- 實現簡單的郵件收發器(十二)
- 轉發郵件附件丟了
- javamail傳送郵件(轉)JavaAI
- 在CentOS上利用mailx搭建郵件服務CentOSAI
- 在 FreeBSD 下利用 Freemail 輕鬆組建郵件系統(轉)AI
- 28、java檔案上傳下載、郵件收發Java