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.
The QuickBooks PHP libs exactly mirror the Intuit schema. That means that when you see a nested object in the schema like this:
You need a nested object in your PHP code too: