Missing property for email mailing??

denpardenpar Member Posts: 80
Hi there,

Our customer is using segments to send an email mailing to contacts (based on a Word document).

They would like to determine a 'sent on behalf of name' for each mailing!

In codeunit 5054:

TempDeliverySorter."Correspondence Type"::"E-Mail":
BEGIN
wrdDoc.MailMerge.Destination := 2;
wrdDoc.MailMerge.MailAddressFieldName := Text015;
wrdDoc.MailMerge.MailSubject := TempDeliverySorter.Subject;
wrdDoc.MailMerge.SentOnBehalfOfName := 'sent on behalf of name email address'; // this is what i want, but this property is missing!!!!
wrdDoc.MailMerge.MailAsAttachment :=
wrdDoc.MailMerge.MailAsAttachment OR TempDeliverySorter."Send Word Docs. as Attmt.";
wrdDoc.MailMerge.Execute
END;

Does anyone know how to fix this???
If your work becomes a passion...
www.pardaan.com
Sign In or Register to comment.