Skip to content

Commit b9bf2ef

Browse files
authored
Backward compatibility for upgrading from 3.0.x (#30)
Backward compatibility for upgrading from 3.0.x
1 parent 0fba8ba commit b9bf2ef

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)
5757
$privateKey = config('dkim.private_key');
5858
$selector = config('dkim.selector');
5959
$domain = config('dkim.domain');
60-
$mailers = config('dkim.mailers');
60+
$mailers = config('dkim.mailers', ['smtp', 'sendmail', 'log', 'mail']);
6161
if (in_array(strtolower(config('mail.default')), $mailers, true)) {
6262
if (empty($privateKey)) {
6363
throw new InvalidArgumentException('No private key set.', 1588115551);

0 commit comments

Comments
 (0)