Node.js
Node.js
Transition from Email.GetDigest to Email.GetDigestEmail
Provides instructions for replacing deprecated GetDigest method calls with GetDigestEmail.Chilkat Node.js Downloads
NODEJS_PRELUDE
function chilkatExample() {
var success = false;
var email = new chilkat.Email();
// ...
// ...
var index = 0;
// ------------------------------------------------------------------------
// The GetDigest method is deprecated:
// emailObj: Email
var emailObj = email.GetDigest(index);
if (email.LastMethodSuccess == false) {
console.log(email.LastErrorText);
return;
}
// ...
// ...
// ------------------------------------------------------------------------
// Do the equivalent using GetDigestEmail.
// Your application creates a new, empty Email object which is passed
// in the last argument and filled upon success.
var emailOut = new chilkat.Email();
success = email.GetDigestEmail(index,emailOut);
if (success == false) {
console.log(email.LastErrorText);
return;
}
}
chilkatExample();