Sample code for 30+ languages & platforms
PHP Extension

Transition from MailMan.LoadXmlString to EmailBundle.LoadXmlString

Provides instructions for replacing deprecated LoadXmlString method calls with EmailBundle.LoadXmlString.

Chilkat PHP Extension Downloads

PHP Extension
<?php

include("chilkat.php");

$success = false;

$mailman = new CkMailMan();

// ...
// ...

$xmlBundleStr = '...';

// ------------------------------------------------------------------------
// The LoadXmlString method is deprecated:

// bundleObj is a CkEmailBundle
$bundleObj = $mailman->LoadXmlString($xmlBundleStr);
if ($mailman->get_LastMethodSuccess() == false) {
    print $mailman->lastErrorText() . "\n";
    exit;
}

// ...
// ...

// ------------------------------------------------------------------------
// Do the equivalent using EmailBundle.LoadXmlString.

$bundle = new CkEmailBundle();
$success = $bundle->LoadXmlString($xmlBundleStr);
if ($success == false) {
    print $bundle->lastErrorText() . "\n";
    exit;
}


?>