Skip to content

Commit

Permalink
Merge pull request assimon#397 from sylas00/master
Browse files Browse the repository at this point in the history
fix:拼写错误
  • Loading branch information
assimon authored Nov 7, 2022
2 parents abc9680 + a2c7aeb commit 45ce778
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/Admin/Forms/EmailTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public function handle(array $input)
$body = $input['body'];
$sysConfig = cache('system-setting');
$mailConfig = [
'driver' => $sysConfig['driver'] ?? 'stmp',
'driver' => $sysConfig['driver'] ?? 'smtp',
'host' => $sysConfig['host'] ?? '',
'port' => $sysConfig['port'] ?? '465',
'username' => $sysConfig['username'] ?? '',
Expand Down
2 changes: 1 addition & 1 deletion app/Jobs/MailSend.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public function handle()
$title = $this->title;
$sysConfig = cache('system-setting');
$mailConfig = [
'driver' => $sysConfig['driver'] ?? 'stmp',
'driver' => $sysConfig['driver'] ?? 'smtp',
'host' => $sysConfig['host'] ?? '',
'port' => $sysConfig['port'] ?? '465',
'username' => $sysConfig['username'] ?? '',
Expand Down

0 comments on commit 45ce778

Please sign in to comment.