This commit is contained in:
RafficMohammed
2023-02-28 18:06:18 +05:30
parent 4037a74fca
commit 555b881753
4 changed files with 5 additions and 4 deletions

View File

@@ -186,7 +186,7 @@ class PhpMailController extends Controller
'port' => $mail->sending_port,
'security' => $mail->sending_encryption,
'username' => $mail->email_address,
'password' => $mail->password,
'password' => $mail->getRawOriginal()['password'],
];
if (!$this->commonMailer->setSmtpDriver($config)) {
\Log::info('Invaid configuration :- '.$config);

View File

@@ -25,6 +25,7 @@ class SyncFaveoToLatestVersion extends Controller
if (version_compare($latestVersion, $olderVersion) == 1) {
$this->updateToLatestVersion($olderVersion);
}
Artisan::call('storage:link');
System::first()->update(['version' => Config::get('app.version')]);
}