mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 07:27:32 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			46 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Mail;
 | |
| 
 | |
| use App\Models\Company;
 | |
| use Illuminate\Bus\Queueable;
 | |
| use Illuminate\Mail\Mailable;
 | |
| use Illuminate\Queue\SerializesModels;
 | |
| 
 | |
| class MigrationCompleted extends Mailable
 | |
| {
 | |
|     use Queueable, SerializesModels;
 | |
| 
 | |
|     public $company;
 | |
| 
 | |
|     /**
 | |
|      * Create a new message instance.
 | |
|      *
 | |
|      * @return void
 | |
|      */
 | |
|     public function __construct(Company $company)
 | |
|     {
 | |
|         $this->company = $company;
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Build the message.
 | |
|      *
 | |
|      * @return $this
 | |
|      */
 | |
|     public function build()
 | |
|     {
 | |
|         $data['settings'] = $this->company->settings;
 | |
|         $data['company'] = $this->company;
 | |
|         $data['whitelabel'] = $this->company->account->isPaid() ? true : false;
 | |
|         
 | |
|         $result = $this->from(config('mail.from.address'), config('mail.from.name'))
 | |
|                     ->view('email.import.completed', $data);
 | |
| 
 | |
|         if($this->company->invoices->count() >=1)
 | |
|             $result->attach($this->company->invoices->first()->pdf_file_path());
 | |
| 
 | |
|         return $result;
 | |
|     }
 | |
| }
 |