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 1 additions and 1 deletions
Showing only changes of commit 98790bb09a - Show all commits

View File

@ -55,7 +55,7 @@ class BluescaleMailApi
if (count($attachments) > 0) {
$formatted_attachmments = [];
foreach ($attachments as $attachment) {
$file = new UploadedFile($attachment->path, $attachment->fileName, 'application/octet-stream', null, null, false);
$file = new UploadedFile($attachment['path'], $attachment['filename'], 'application/octet-stream', null, null, false);
$formatted_attachmments[] = $file;
}