在ASP中用EasyMailObject組件處理Exchange郵件源代碼(2)
發(fā)表時(shí)間:2023-08-16 來(lái)源:明輝站整理相關(guān)軟件相關(guān)文章人氣:
[摘要]讀取郵件內(nèi)容和附件(showbody1.asp)<%@ LANGUAGE="VBSCRIPT" %><%'***********************...
讀取郵件內(nèi)容和附件(showbody1.asp)
<%@ LANGUAGE="VBSCRIPT" %>
<%
'************************************************
'這個(gè)文件顯示郵件的內(nèi)容和附件
'作者:awayeah
'郵箱:awayeah@163.net
'************************************************
%>
<html>
<head>
<title>讀郵件</title>
</head>
<body>
<%
SET POP3=session("POP3")
x = POP3.Connect()
If x <> 0 Then
Response.Write "連接錯(cuò)誤: " + CStr(x)
POP3.Disconnect
End If
y = POP3.DownloadHeaders
j=pop3.GetMessageNumFromID(request.querystring("id"))
msg = POP3.DownloadSingleMessage(j)
'Set Message Object to point to that downloaded message
Set Message = POP3.Messages(msg)
'顯示郵件內(nèi)容
Response.Write replace(Message.bodytext,chr(13),"<br>")
%>
<%
'如果該郵件有附件,則顯示附件文件名和文件大小
if message.Attachments.Count>0 then%>
<P></p>
<hr>
<table border=1 align="left" cellspacing="0">
<tr><td>文件名</td><td>大小</td><tr>
<%
For k = 1 To message.Attachments.Count
Response.Write ("<tr><td>")%>
<a href=# onClick=javascript:window.open('saveatt.asp?msgid=<%=j%>&attid=<%=k%>','getatt','width=600,height=440,scrollbars=yes');>
<%=Message.Attachments(k).name%></a></td><td>
<%Response.Write cstr(Message.Attachments(k).size)
Response.Write "</td></tr>"
Next
%>
</table>
<%
end if
POP3.Disconnect
%>
</body>
</html>