1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-10 13:12:50 +01:00

Improving error reporting API

This commit is contained in:
David Bomba 2016-02-17 09:38:23 +11:00
parent 170ee5a40b
commit 1fde9261e6
2 changed files with 2 additions and 4 deletions

View File

@ -289,10 +289,10 @@ class InvoiceApiController extends BaseAPIController
return $this->errorResponse(['message'=>'Invoice does not exist.'], 400);
$emailResponse = $this->mailer->sendInvoice($invoice, false, false);
$this->mailer->sendInvoice($invoice, false, $invoice->getPDFString());
if($emailResponse === FALSE) {
if($error) {
return $this->errorResponse(['message'=>'There was an error sending the invoice'], 400);
}
else {

View File

@ -41,8 +41,6 @@ class ContactMailer extends Mailer
$client = $invoice->client;
$account = $invoice->account;
$response = false;
if ($client->trashed()) {
return trans('texts.email_errors.inactive_client');
} elseif ($invoice->trashed()) {