I have written the code to send an email. In this I need to create a message but the text uses more then 250 characters. How can I add two text Constants to the email message.
This is what I tried but it still argues it's over 250 characters. it isn't unless they're joined together.
cuSMTP.EmailRecordMessageFileandFolder(strEmailNo, recPurchaseOrderTMP."Buy-from Vendor No." + '.xlsx' ,recTiogaSetup."Job Queue Document Folder");
cuSMTP.EmailRecordMessageLineBlank(strEmailNo,2);
VendorBookEmailtext := Text016 + Text019;
cuSMTP.EmailRecordMessageLine(
strEmailNo,
STRSUBSTNO(
// Text016,
VendorBookEmailtext // This contains both the Text Constants
),
'',
FALSE
);
cuSMTP.EmailRecordMessageEnd(strEmailNo);
END;
*This post is locked for comments
I have the same question (0)