PowerBuilder
PowerBuilder
Load an Email from a Chilkat XML String
See more Email Object Examples
Demonstrates the Chilkat Email.SetFromXmlText method, which loads an email from a Chilkat XML string (as produced by GetXml). On success, it replaces the entire current email. This example serializes one email to XML, then reconstructs it in a second object.
Background: This loads Chilkat's XML email representation from a string — the in-memory counterpart to
LoadXml. The XML format is an alternative to standard MIME, but for most purposes the MIME form (SetFromMimeText / GetMime) is preferred: it is interoperable and also preserves Chilkat's CKX- metadata headers (which are always removed before an email is sent), so the XML format offers no metadata advantage.Chilkat PowerBuilder Downloads
integer li_rc
integer li_Success
oleobject loo_Source
string ls_XmlText
oleobject loo_Email
li_Success = 0
// Demonstrates the SetFromXmlText method, which loads an email from a Chilkat XML string.
// On success, it replaces the entire current email.
// Build a source email and serialize it to Chilkat XML.
loo_Source = create oleobject
li_rc = loo_Source.ConnectToNewObject("Chilkat.Email")
if li_rc < 0 then
destroy loo_Source
MessageBox("Error","Connecting to COM object failed")
return
end if
loo_Source.Subject = "Source message"
loo_Source.From = "alice@example.com"
loo_Source.Body = "Hello!"
ls_XmlText = loo_Source.GetXml()
// Load a new email object from the XML string.
loo_Email = create oleobject
li_rc = loo_Email.ConnectToNewObject("Chilkat.Email")
li_Success = loo_Email.SetFromXmlText(ls_XmlText)
if li_Success = 0 then
Write-Debug loo_Email.LastErrorText
destroy loo_Source
destroy loo_Email
return
end if
Write-Debug "Loaded subject: " + loo_Email.Subject
destroy loo_Source
destroy loo_Email