PHP Extension
PHP Extension
Transition from Imap.FetchBundleAsMime to Imap.FetchSingleBd
Provides instructions for replacing deprecated FetchBundleAsMime method calls with FetchSingleBd.Chilkat PHP Extension Downloads
<?php
include("chilkat.php");
$success = false;
$imap = new CkImap();
// ...
// ...
$mset = new CkMessageSet();
$success = $imap->QueryMbx('FROM joe@example.com',true,$mset);
// ...
// ...
// ------------------------------------------------------------------------
// The FetchBundleAsMime method is deprecated:
// saObj is a CkStringArray
$saObj = $imap->FetchBundleAsMime($mset);
if ($imap->get_LastMethodSuccess() == false) {
print $imap->lastErrorText() . "\n";
exit;
}
// ...
// ...
// ------------------------------------------------------------------------
// Do the equivalent using FetchSingleBd.
$imap->put_AutoDownloadAttachments(true);
$bdMime = new CkBinData();
$bUid = $mset->get_HasUids();
$numEmails = $mset->get_Count();
$i = 0;
while ($i < $numEmails) {
$success = $imap->FetchSingleBd($mset->GetId($i),$bUid,$bdMime);
// ...
// ...
$i = $i + 1;
}
?>