1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 08:21:34 +02:00
invoiceninja/app/Ninja/Intents/EmailInvoiceIntent.php
2017-01-30 21:40:43 +02:00

33 lines
853 B
PHP

<?php
namespace App\Ninja\Intents;
use App\Libraries\Skype\SkypeResponse;
use Auth;
use Exception;
class EmailInvoiceIntent extends InvoiceIntent
{
public function process()
{
$invoice = $this->stateInvoice();
if (! Auth::user()->can('edit', $invoice)) {
throw new Exception(trans('texts.not_allowed'));
}
$contactMailer = app('App\Ninja\Mailers\ContactMailer');
$contactMailer->sendInvoice($invoice);
$message = trans('texts.bot_emailed_' . $invoice->getEntityType());
if (Auth::user()->notify_viewed) {
$message .= '<br/>' . trans('texts.bot_emailed_notify_viewed');
} elseif (Auth::user()->notify_paid) {
$message .= '<br/>' . trans('texts.bot_emailed_notify_paid');
}
return SkypeResponse::message($message);
}
}