XERO 通过电子邮件发送发票
XERO send Invoice through email
我已将 XERO 与我的 php(codeigniter) 网站集成,我实施的一切都运行良好。
我想通过我创建的电子邮件发送发票。
我正在使用 XeroOAuth。
//This line is working properly
$response = $this->XeroOAuth->request('GET', $this->XeroOAuth->url('Invoices/'.$invoiceId, 'core'), array(), "", 'pdf');
//but cant send email through xero api
$send_email = $this->XeroOAuth->request('POST', $this->XeroOAuth->url('Invoices/'.$invoiceId.'/Email', 'core'), array() );
正如他们的文档所解释的那样,这行代码应该触发 xero 发送邮件选项,但它返回错误 401
尝试使用
XERO PHP
您可以使用
轻松发送发票
$invoice->sendMail();
我已将 XERO 与我的 php(codeigniter) 网站集成,我实施的一切都运行良好。 我想通过我创建的电子邮件发送发票。
我正在使用 XeroOAuth。
//This line is working properly
$response = $this->XeroOAuth->request('GET', $this->XeroOAuth->url('Invoices/'.$invoiceId, 'core'), array(), "", 'pdf');
//but cant send email through xero api
$send_email = $this->XeroOAuth->request('POST', $this->XeroOAuth->url('Invoices/'.$invoiceId.'/Email', 'core'), array() );
正如他们的文档所解释的那样,这行代码应该触发 xero 发送邮件选项,但它返回错误 401
尝试使用 XERO PHP 您可以使用
轻松发送发票$invoice->sendMail();