File manager - Edit - /home/linknsbh/cecil-hotel.net/vendor/botble/platform/base/src/Supports/EmailAbstract.php
Back
<?php namespace Botble\Base\Supports; use Illuminate\Bus\Queueable; use Illuminate\Mail\Mailable; use Illuminate\Queue\SerializesModels; use Illuminate\Support\Arr; use TijsVerkoyen\CssToInlineStyles\CssToInlineStyles; class EmailAbstract extends Mailable { use Queueable; use SerializesModels; public string $content; public $subject; public array $data; public function __construct(string|null $content, string|null $subject, array $data = []) { $this->content = $content; $this->subject = $subject; $this->data = $data; } public function build(): EmailAbstract { $inlineCss = new CssToInlineStyles(); $fromAddress = setting('email_from_address', config('mail.from.address')); $fromName = setting('email_from_name', config('mail.from.name')); if (isset($this->data['from'])) { if (is_array($this->data['from'])) { $fromAddress = Arr::first(array_keys($this->data['from'])); $fromName = Arr::first($this->data['from']); } else { $fromAddress = $this->data['from']; } } $email = $this ->from($fromAddress, $fromName) ->subject($this->subject) ->html($inlineCss->convert($this->content)); $attachments = Arr::get($this->data, 'attachments'); if (! empty($attachments)) { if (! is_array($attachments)) { $attachments = [$attachments]; } foreach ($attachments as $file) { $email->attach($file); } } if (isset($this->data['cc'])) { $email = $this->cc($this->data['cc']); } if (isset($this->data['bcc'])) { $email = $this->bcc($this->data['bcc']); } if (isset($this->data['replyTo'])) { $email = $this->replyTo($this->data['replyTo']); } return $email; } }
| ver. 1.4 |
Github
|
.
| PHP 8.2.31 | Generation time: 0.51 |
proxy
|
phpinfo
|
Settings