mirror of
https://github.com/silverstripe/silverstripe-behat-extension
synced 2024-10-22 17:05:32 +02:00
update the params to be array on sending email
This commit is contained in:
parent
1201cded6e
commit
3b6b525e8c
@ -30,8 +30,8 @@ class TestMailer extends \Mailer {
|
||||
'Subject' => $subject,
|
||||
'Content' => $plainContent,
|
||||
'PlainContent' => $plainContent,
|
||||
'AttachedFiles' => implode(',', $attachedFiles),
|
||||
'CustomHeaders' => implode(',', $customHeaders),
|
||||
'AttachedFiles' => $attachedFiles,
|
||||
'CustomHeaders' => $customHeaders,
|
||||
));
|
||||
|
||||
return true;
|
||||
@ -51,8 +51,8 @@ class TestMailer extends \Mailer {
|
||||
'Subject' => $subject,
|
||||
'Content' => $htmlContent,
|
||||
'PlainContent' => $plainContent,
|
||||
'AttachedFiles' => implode(',', $attachedFiles),
|
||||
'CustomHeaders' => implode(',', $customHeaders),
|
||||
'AttachedFiles' => $attachedFiles,
|
||||
'CustomHeaders' => $customHeaders,
|
||||
));
|
||||
|
||||
return true;
|
||||
|
Loading…
Reference in New Issue
Block a user