mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-03 19:07:33 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			56 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			56 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * Invoice Ninja (https://invoiceninja.com).
 | 
						|
 *
 | 
						|
 * @link https://github.com/invoiceninja/invoiceninja source repository
 | 
						|
 *
 | 
						|
 * @copyright Copyright (c) 2024. Invoice Ninja LLC (https://invoiceninja.com)
 | 
						|
 *
 | 
						|
 * @license https://www.elastic.co/licensing/elastic-license
 | 
						|
 */
 | 
						|
 | 
						|
namespace App\Mail;
 | 
						|
 | 
						|
use App\Models\Company;
 | 
						|
use Illuminate\Bus\Queueable;
 | 
						|
use Illuminate\Mail\Mailable;
 | 
						|
use Illuminate\Queue\SerializesModels;
 | 
						|
use Illuminate\Support\Facades\App;
 | 
						|
 | 
						|
class DownloadCredits extends Mailable
 | 
						|
{
 | 
						|
    // use Queueable, SerializesModels;
 | 
						|
 | 
						|
    public $file_path;
 | 
						|
 | 
						|
    public $company;
 | 
						|
 | 
						|
    public function __construct($file_path, Company $company)
 | 
						|
    {
 | 
						|
        $this->file_path = $file_path;
 | 
						|
 | 
						|
        $this->company = $company;
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Build the message.
 | 
						|
     */
 | 
						|
    public function build()
 | 
						|
    {
 | 
						|
        App::setLocale($this->company->getLocale());
 | 
						|
 | 
						|
        return $this->from(config('mail.from.address'), config('mail.from.name'))
 | 
						|
            ->subject(ctrans('texts.download_files'))
 | 
						|
            ->text('email.admin.download_credits_text', [
 | 
						|
                'url' => $this->file_path,
 | 
						|
            ])
 | 
						|
            ->view('email.admin.download_credits', [
 | 
						|
                'url' => $this->file_path,
 | 
						|
                'logo' => $this->company->present()->logo,
 | 
						|
                'whitelabel' => $this->company->account->isPaid() ? true : false,
 | 
						|
                'settings' => $this->company->settings,
 | 
						|
                'greeting' => $this->company->present()->name(),
 | 
						|
            ]);
 | 
						|
    }
 | 
						|
}
 |