(Ruby) Transition from Imap.FetchBundleAsMime to Imap.FetchSingleBd
Provides instructions for replacing deprecated FetchBundleAsMime method calls with FetchSingleBd. Note: This example requires Chilkat v11.0.0 or greater.
require 'chilkat'
imap = Chilkat::CkImap.new()
# ...
# ...
mset = Chilkat::CkMessageSet.new()
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
end
# ...
# ...
# ------------------------------------------------------------------------
# Do the equivalent using FetchSingleBd.
imap.put_AutoDownloadAttachments(true)
bdMime = Chilkat::CkBinData.new()
bUid = mset.get_HasUids()
numEmails = mset.get_Count()
i = 0
while i < numEmails
success = imap.FetchSingleBd(mset.GetId(i),bUid,bdMime)
# ...
# ...
i = i + 1
end
|