1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-22 01:11:34 +02:00
invoiceninja/app/Services/Email/EmailMailable.php

126 lines
3.5 KiB
PHP
Raw Normal View History

2023-01-15 04:44:23 +01:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
2023-01-28 23:21:40 +01:00
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
2023-01-15 04:44:23 +01:00
*
* @license https://www.elastic.co/licensing/elastic-license
*/
namespace App\Services\Email;
use App\Models\Document;
2023-01-15 04:44:23 +01:00
use Illuminate\Mail\Mailable;
use Illuminate\Mail\Attachment;
2023-03-09 00:38:08 +01:00
use Illuminate\Support\Facades\URL;
2023-01-15 04:44:23 +01:00
use Illuminate\Mail\Mailables\Content;
use Illuminate\Mail\Mailables\Headers;
use Illuminate\Mail\Mailables\Envelope;
2023-01-15 04:44:23 +01:00
class EmailMailable extends Mailable
{
2023-03-09 00:38:08 +01:00
public int $max_attachment_size = 3000000;
2023-01-15 04:44:23 +01:00
/**
* Create a new message instance.
*
* @return void
*/
2023-02-16 02:36:09 +01:00
public function __construct(public EmailObject $email_object)
{
}
2023-01-15 04:44:23 +01:00
/**
* Get the message envelope.
*
* @return \Illuminate\Mail\Mailables\Envelope
*/
public function envelope()
{
return new Envelope(
subject: $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
);
}
/**
* Get the message content definition.
*
* @return \Illuminate\Mail\Mailables\Content
*/
public function content()
{
2023-03-09 00:38:08 +01:00
$links = Document::whereIn('id',$this->email_object->documents)
->where('size', '>', $this->max_attachment_size)
->cursor()
->map(function ($document){
return "<a class='doc_links' href='" . URL::signedRoute('documents.public_download', ['document_hash' => $document->hash]) ."'>". $document->name ."</a>";
});
2023-01-15 04:44:23 +01:00
return new Content(
2023-01-15 11:20:16 +01:00
view: $this->email_object->html_template,
2023-01-15 04:44:23 +01:00
text: $this->email_object->text_template,
with: [
2023-01-15 11:16:10 +01:00
'text_body' => strip_tags($this->email_object->body), //@todo this is a bit hacky here.
2023-01-15 04:44:23 +01:00
'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,
2023-03-09 00:38:08 +01:00
'greeting' => '',
'links' => array_merge($this->email_object->links, $links->toArray()),
2023-01-15 04:44:23 +01:00
]
);
}
/**
* Get the attachments for the message.
*
* @return array
*/
public function attachments()
{
$attachments = [];
2023-03-09 00:38:08 +01:00
$attachments = collect($this->email_object->attachments)->map(function ($file){
return Attachment::fromData(fn () => base64_decode($file['file']), $file['name']);
});
$documents = Document::whereIn('id',$this->email_object->documents)
->where('size', '<', $this->max_attachment_size)
->cursor()
->map(function ($document){
2023-01-15 04:44:23 +01:00
2023-03-09 00:38:08 +01:00
return Attachment::fromData(fn () => $document->getFile(), $document->name);
2023-03-09 00:38:08 +01:00
});
2023-03-09 00:38:08 +01:00
return $attachments->merge($documents)->toArray();
2023-01-15 04:44:23 +01:00
}
/**
* Get the message headers.
*
* @return \Illuminate\Mail\Mailables\Headers
*/
public function headers()
{
return new Headers(
messageId: null,
references: [],
text: $this->email_object->headers,
);
}
}