为imail和Mdaemon设计Webmail---读取邮件内容(showbody1.asp)
<%@ LANGUAGE="VBSCRIPT" %>
<% '********************************* '这是显示邮件内容窗口的文件,根据邮件列示窗口(maillist1.asp)传来的邮件ID来显示所选的邮件 '********************************* <% i=clng(Request.QueryString("id")) '要显示邮件的ID strserver=session("strserver") strAccount=session("straccount") strPassword=session("strpassword") Set POP3 = CreateObject("EasyMail.POP3.5") POP3.LicenseKey = "awa/S19I500R1AX30C0R3100" POP3.MailServer = strServer POP3.Account = strAccount POP3.Password = strPassword pop3.PreferredBodyFormat=1 '指定内容显示格式 pop3.TimeOut=300 x = POP3.Connect 连接错误: " + CStr(x) + " x = POP3.DownloadMessages(0) Response.Write replace(POP3.Messages.item(i).bodytext,chr(13)," " if pop3.messages.item(i).Attachments.Count>0 then '如果该邮件有附件
<% end if POP3.Disconnect ' Set POP3 = Nothing %> 上一篇:为imail和Mdaemon设计Webmail---读取邮件信息(maillist1.asp) 下一篇:imail和Mdaemon设计Webmail-发送邮件调用文件 更多相关文章
|
推荐文章
精彩文章
|