You've already forked laravel-mail
feat: handle attachments
This commit is contained in:
@@ -26,6 +26,13 @@ class BluescaleMailTemplate implements \JsonSerializable
|
||||
public $recipients = [];
|
||||
|
||||
/**
|
||||
* The attachments for the message
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
public $attachments = [];
|
||||
|
||||
/**
|
||||
* The reply address for the message
|
||||
*
|
||||
* @var array
|
||||
@@ -159,6 +166,7 @@ class BluescaleMailTemplate implements \JsonSerializable
|
||||
'sender' => $this->sender,
|
||||
'replyTo' => $this->replyTo,
|
||||
'recipients' => $this->recipients,
|
||||
'attachments' => $this->attachments,
|
||||
'parameters' => $this->parameters,
|
||||
];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user