Skip to content

Commit f016908

Browse files
committed
Add 'mail' as additional mailer
1 parent 6878bb4 commit f016908

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Mailer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public function send($view, array $data = [], $callback = null): ?SentMessage
5757
$privateKey = config('dkim.private_key');
5858
$selector = config('dkim.selector');
5959
$domain = config('dkim.domain');
60-
if (in_array(strtolower(config('mail.default')), ['smtp', 'sendmail', 'log'])) {
60+
if (in_array(strtolower(config('mail.default')), ['smtp', 'sendmail', 'log', 'mail'])) {
6161
if (empty($privateKey)) {
6262
throw new InvalidArgumentException('No private key set.', 1588115551);
6363
}

0 commit comments

Comments
 (0)