mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 14:17:34 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			132 lines
		
	
	
		
			4.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			132 lines
		
	
	
		
			4.3 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\Services\Email;
 | |
| 
 | |
| use App\Utils\Ninja;
 | |
| use App\Models\Document;
 | |
| use Illuminate\Support\Str;
 | |
| use Illuminate\Mail\Mailable;
 | |
| use Illuminate\Mail\Attachment;
 | |
| use Illuminate\Support\Facades\URL;
 | |
| use Illuminate\Support\Facades\Cache;
 | |
| use Illuminate\Mail\Mailables\Content;
 | |
| use Illuminate\Mail\Mailables\Headers;
 | |
| use Illuminate\Mail\Mailables\Envelope;
 | |
| 
 | |
| class EmailMailable extends Mailable
 | |
| {
 | |
|     public int $max_attachment_size = 3000000;
 | |
| 
 | |
|     /**
 | |
|      * Create a new message instance.
 | |
|      *
 | |
|      * @return void
 | |
|      */
 | |
|     public function __construct(public EmailObject $email_object)
 | |
|     {
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Get the message envelope.
 | |
|      *
 | |
|      * @return \Illuminate\Mail\Mailables\Envelope
 | |
|      */
 | |
|     public function envelope()
 | |
|     {
 | |
|         return new Envelope(
 | |
|             subject: str_replace("<br>", "", $this->email_object->subject),
 | |
|             tags: [$this->email_object->company_key],
 | |
|             replyTo: $this->email_object->reply_to,
 | |
|             from: $this->email_object->from,
 | |
|             to: $this->email_object->to,
 | |
|             bcc: $this->email_object->bcc,
 | |
|             cc: $this->email_object->cc,
 | |
|         );
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Get the message content definition.
 | |
|      *
 | |
|      * @return \Illuminate\Mail\Mailables\Content
 | |
|      */
 | |
|     public function content()
 | |
|     {
 | |
|         $links = Document::query()->whereIn('id', $this->email_object->documents)
 | |
|                 ->where('size', '>', $this->max_attachment_size)
 | |
|                 ->cursor()
 | |
|                 ->map(function ($document) {
 | |
| 
 | |
|                     $hash = Str::random(64);
 | |
|                     Cache::put($hash, ['db' => $this->email_object->company->db, 'doc_hash' => $document->hash], now()->addDays(7));
 | |
| 
 | |
|                     return "<a class='doc_links' href='" . URL::signedRoute('documents.hashed_download', ['hash' => $hash]) ."'>". $document->name ."</a>";
 | |
|                 });
 | |
| 
 | |
|         return new Content(
 | |
|             view: $this->email_object->html_template,
 | |
|             text: $this->email_object->text_template,
 | |
|             with: [
 | |
|                 'text_body' => $this->email_object->text_body, //@todo this is a bit hacky here.
 | |
|                 'body' => $this->email_object->body,
 | |
|                 'settings' => $this->email_object->settings,
 | |
|                 'whitelabel' => $this->email_object->whitelabel,
 | |
|                 'logo' => $this->email_object->logo,
 | |
|                 'signature' => $this->email_object->signature,
 | |
|                 'company' => $this->email_object->company,
 | |
|                 'greeting' => '',
 | |
|                 'links' => array_merge($this->email_object->links, $links->toArray()),
 | |
|                 'email_preferences' => (Ninja::isHosted() && in_array($this->email_object->settings->email_sending_method, ['default', 'mailgun']) && $this->email_object->invitation)
 | |
|                     ? URL::signedRoute('client.email_preferences', ['entity' => $this->email_object->invitation->getEntityString(), 'invitation_key' => $this->email_object->invitation->key])
 | |
|                     : false,
 | |
|             ]
 | |
|         );
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Get the attachments for the message.
 | |
|      *
 | |
|      * @return array
 | |
|      */
 | |
|     public function attachments()
 | |
|     {
 | |
|         $attachments  = [];
 | |
| 
 | |
|         $attachments = collect($this->email_object->attachments)->map(function ($file) {
 | |
|             return Attachment::fromData(fn () => base64_decode($file['file']), $file['name']);
 | |
|         });
 | |
| 
 | |
|         $documents = Document::query()->whereIn('id', $this->email_object->documents)
 | |
|                 ->where('size', '<', $this->max_attachment_size)
 | |
|                 ->where('is_public', 1)
 | |
|                 ->cursor()
 | |
|                 ->map(function ($document) {
 | |
|                     return Attachment::fromData(fn () => $document->getFile(), $document->name);
 | |
|                 });
 | |
| 
 | |
|         return $attachments->merge($documents)->toArray();
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Get the message headers.
 | |
|      *
 | |
|      * @return \Illuminate\Mail\Mailables\Headers
 | |
|      */
 | |
|     public function headers()
 | |
|     {
 | |
|         return new Headers(
 | |
|             messageId: null,
 | |
|             references: [],
 | |
|             text: $this->email_object->headers,
 | |
|         );
 | |
|     }
 | |
| }
 |