feat: add attachments method
This commit is contained in:
parent
e0a805cbdb
commit
c4ccfd7310
|
@ -144,6 +144,16 @@ class BluescaleMailTemplate implements \JsonSerializable
|
|||
}
|
||||
|
||||
/**
|
||||
* @param array $attachments
|
||||
* @return BluescaleMailTemplate
|
||||
*/
|
||||
public function attachments(array $attachments): BluescaleMailTemplate
|
||||
{
|
||||
$this->attachments = $attachments;
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $key
|
||||
* @param string $value
|
||||
* @return BluescaleMailTemplate
|
||||
|
|
Loading…
Reference in New Issue