Classic ASP
Classic ASP
Transition from MailMan.FetchEmail to MailMan.FetchByUidl
Provides instructions for replacing deprecated FetchEmail method calls with FetchByUidl.Chilkat Classic ASP Downloads
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<%
success = 0
set mailman = Server.CreateObject("Chilkat.MailMan")
' ...
' ...
uidl = "123"
' ------------------------------------------------------------------------
' The FetchEmail method is deprecated:
' emailObj is a Chilkat.Email
Set emailObj = mailman.FetchEmail(uidl)
If (mailman.LastMethodSuccess = 0) Then
Response.Write "<pre>" & Server.HTMLEncode( mailman.LastErrorText) & "</pre>"
Response.End
End If
' ...
' ...
' ------------------------------------------------------------------------
' Do the equivalent using FetchByUidl.
' Your application creates a new, empty Email object which is passed
' in the last argument and filled upon success.
headerOnly = 0
' Irrelevant because we are not downloading headers-only.
numBodyLines = 0
set emailOut = Server.CreateObject("Chilkat.Email")
success = mailman.FetchByUidl(uidl,headerOnly,numBodyLines,emailOut)
If (success = 0) Then
Response.Write "<pre>" & Server.HTMLEncode( mailman.LastErrorText) & "</pre>"
Response.End
End If
%>
</body>
</html>