Hello All
When using Zetafax, the document I print from Navision goes to the Zetafax printer but automatically puts a cross next to it and then deletes.
This is the code I am using within my document in Navision, any ideas?
GtxtFaxHeader := '%%[Fax:' + GtextFaxNo +'] %%[Name:' + GtextContactName + '-' + GtextCompanyName +']';
GtxtFaxFooter := '%%[send]';
Thanks
0
Comments
I have used successfully:
'%%[To: '+ tZetaFaxLine +']'
where tZetaFaxLine =
rVendor."Fax No." + ', ' + rVendor.Contact + ', ' + rVendor.Name
But I have not tried to send, in our case they just wanted the default information to fill in.
-A