Classic ASP
Classic ASP
Transition from MailMan.TransferMail to MailMan.FetchAll
Provides instructions for replacing deprecated TransferMail method calls with FetchAll.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")
' ...
' ...
' ------------------------------------------------------------------------
' The TransferMail method is deprecated:
' bundleObj is a Chilkat.EmailBundle
Set bundleObj = mailman.TransferMail()
If (mailman.LastMethodSuccess = 0) Then
Response.Write "<pre>" & Server.HTMLEncode( mailman.LastErrorText) & "</pre>"
Response.End
End If
' ...
' ...
' ------------------------------------------------------------------------
' Do the equivalent using FetchAll.
' Your application creates a new, empty EmailBundle object which is passed
' in the last argument and filled upon success.
keepOnServer = 0
headersOnly = 0
' Irrelevent because we are not downloading headers-only.
numBodyLines = 0
set bundleOut = Server.CreateObject("Chilkat.EmailBundle")
success = mailman.FetchAll(keepOnServer,headersOnly,numBodyLines,bundleOut)
If (success = 0) Then
Response.Write "<pre>" & Server.HTMLEncode( mailman.LastErrorText) & "</pre>"
Response.End
End If
%>
</body>
</html>