Skip to content

Commit ce35b0e

Browse files
committed
provide default for optional value queued
1 parent ac18e60 commit ce35b0e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/EmailComposer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ public function send()
290290

291291
$this->email->refresh();
292292

293-
if ($this->getData('queued') === true) {
293+
if ($this->getData('queued', false) === true) {
294294
dispatch(new SendEmailJob($this->email))
295295
->onConnection($this->getData('connection'))
296296
->onQueue($this->getData('queue'));

0 commit comments

Comments
 (0)