欢迎光临
我们一直在努力

为imail和mdaemon设计webmail—读取邮件内容(showbody1.asp)_imail server

建站超值云服务器,限时71元/月

<%@ 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
If x <> 0 Then
Response.Write “

连接错误: ” + CStr(x) + “

请和管理员联系”
POP3.Disconnect
Response.End
End If

x = POP3.DownloadMessages(0)
If x <> 0 Then
Response.Write “下载错误: ” + CStr(x) +”

请和管理员联系”
POP3.Disconnect
Response.End
End If

Response.Write replace(POP3.Messages.item(i).bodytext,chr(13),”
“) 显示邮件正文
Response.Write “


if pop3.messages.item(i).Attachments.Count>0 then 如果该邮件有附件
%>




<%
For k = 1 To pop3.messages.item(i).Attachments.Count 按附件数循环显示所有附件名
Response.Write (“


Next
%>

文件名 大小
“)%>
%26amp;attid=<%=k%>,getatt,width=640,height=480,scrollbars=yes);>
<%=pop3.Messages.item(i).Attachments(k).name%>

<%Response.Write cstr(pop3.Messages.item(i).Attachments(k).size)
Response.Write “


<%
end if
POP3.Disconnect
Set POP3 = Nothing
%>

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » 为imail和mdaemon设计webmail—读取邮件内容(showbody1.asp)_imail server
分享到: 更多 (0)