Xojo Plugin
Xojo Plugin
Transition from MailMan.LoadXmlEmailString to Email.SetFromXmlText
Provides instructions for replacing deprecated LoadXmlEmailString method calls with Email.SetFromXmlText.Chilkat Xojo Plugin Downloads
Dim success As Boolean
success = False
Dim mailman As New Chilkat.MailMan
// ...
// ...
Dim xmlStr As String
xmlStr = "..."
// ------------------------------------------------------------------------
// The LoadXmlEmailString method is deprecated:
Dim emailObj As Chilkat.Email
emailObj = mailman.LoadXmlEmailString(xmlStr)
If (mailman.LastMethodSuccess = False) Then
System.DebugLog(mailman.LastErrorText)
Return
End If
// ...
// ...
// ------------------------------------------------------------------------
// Do the equivalent using Email.SetFromXmlText.
Dim email As New Chilkat.Email
success = email.SetFromXmlText(xmlStr)
If (success = False) Then
System.DebugLog(email.LastErrorText)
Return
End If