mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-06 03:02:34 +01:00
d516b1b097
* Fix inputs * Workflow settings: Auto archive - New InvoiceWorkflowSettings job - Updated PaymentCreatedActivity to dispatch the job - New 'Archivable' trait - New 'archived_at' field * Workflow settings: Sending e-mail to client with auto_send * Workflow settings: Quotes * Fix HTML markup * Fix archive & sending * Remove Archivable trait & migration file * Change order of sending the events
34 lines
561 B
PHP
34 lines
561 B
PHP
<?php
|
|
|
|
namespace App\Mail\Invoices;
|
|
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
use Illuminate\Mail\Mailable;
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
class InvoiceWasPaid extends Mailable
|
|
{
|
|
use Queueable, SerializesModels;
|
|
|
|
/**
|
|
* Create a new message instance.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct()
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Build the message.
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function build()
|
|
{
|
|
return $this->view('email.invoices.paid');
|
|
}
|
|
}
|