feature/add-attachments #2

Manually merged
Thifaine merged 12 commits from feature/add-attachments into master 2020-06-09 16:20:07 +02:00
1 changed files with 10 additions and 0 deletions
Showing only changes of commit c4ccfd7310 - Show all commits

View File

@ -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 $key
* @param string $value * @param string $value
* @return BluescaleMailTemplate * @return BluescaleMailTemplate