QuickBooks PHP API Creating Invoice, mail not working

221 Views Asked by At

have a problem with QB PHP api, when creating Invoices I can not set the email address. Here is the code;

$InvoiceService = new QuickBooks_IPP_Service_Invoice();
$Invoice = new QuickBooks_IPP_Object_Invoice();
$Invoice->setDocNumber($sale->ID);
$Invoice->setDueDate($sale->duedate);
$Invoice->setCustomerRef($customer->qbID);
$Invoice->setBillEmail("[email protected]");

setBillEmail should work, but can not understand why it is not working.

1

There are 1 best solutions below

1
On BEST ANSWER

The QuickBooks PHP libs exactly mirror the Intuit schema. That means that when you see a nested object in the schema like this:

 "BillEmail": {
     "Address": "[email protected]"
 },

You need a nested object in your PHP code too:

$BillEmail = new QuickBooks_IPP_Object_BillEmail();
$BillEmail->setAddress('[email protected]');
$Invoice->setBillEmail($BillEmail);