Discussions
Read on for the latest updates including:
• Agenda Builder launch
• SuiteWorld On Air registration
• New NetSuite Prompt Studio Contest
• And more!
Check out this thread to learn more!
nlapiSendFax not working with PDF attachments
Hi,
I am trying to send a fax with pdf attachment but it's not working.Although when I attach a HTML document it works.
Any idea how to do it??
Here is the code I am using:
function SendFax()
{
var CustomForm = nlapiGetFieldValue('customform');
if (CustomForm == 135)
{
var EmailBody = nlapiLoadFile('11729').getValue();
var File = nlapiPrintRecord('TRANSACTION', 115, 'PDF', null);
nlapiSendFax('6940','949.724.1154' ,'Promotion Notification',EmailBody,null,File);
return true;
}
}