mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
70 lines
2.4 KiB
PHP
70 lines
2.4 KiB
PHP
<?php
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
|
*/
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use App\Http\Requests\Smtp\CheckSmtpRequest;
|
|
use App\Mail\TestMailServer;
|
|
use Illuminate\Http\Request;
|
|
use Illuminate\Support\Facades\Mail;
|
|
|
|
class SmtpController extends BaseController
|
|
{
|
|
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
}
|
|
|
|
public function check(CheckSmtpRequest $request)
|
|
{
|
|
/** @var \App\Models\User $user */
|
|
$user = auth()->user();
|
|
$company = $user->company();
|
|
|
|
$smtp_host = $request->input('smtp_host', $company->smtp_host);
|
|
$smtp_port = $request->input('smtp_port', $company->smtp_port);
|
|
$smtp_username = $request->input('smtp_username', $company->smtp_username);
|
|
$smtp_password = $request->input('smtp_password', $company->smtp_password);
|
|
$smtp_encryption = $request->input('smtp_encryption', $company->smtp_encryption ?? 'tls');
|
|
$smtp_local_domain = $request->input('smtp_local_domain', strlen($company->smtp_local_domain) > 2 ? $company->smtp_local_domain : null);
|
|
$smtp_verify_peer = $request->input('verify_peer', $company->smtp_verify_peer ?? true);
|
|
|
|
config([
|
|
'mail.mailers.smtp' => [
|
|
'transport' => 'smtp',
|
|
'host' => $smtp_host,
|
|
'port' => $smtp_port,
|
|
'username' => $smtp_username,
|
|
'password' => $smtp_password,
|
|
'encryption' => $smtp_encryption,
|
|
'local_domain' => $smtp_local_domain,
|
|
'verify_peer' => $smtp_verify_peer,
|
|
'timeout' => 5,
|
|
],
|
|
]);
|
|
|
|
(new \Illuminate\Mail\MailServiceProvider(app()))->register();
|
|
|
|
try {
|
|
Mail::to($user->email, $user->present()->name())->send(new TestMailServer('Email Server Works!', strlen($company->settings->custom_sending_email) > 1 ? $company->settings->custom_sending_email : $user->email));
|
|
} catch (\Exception $e) {
|
|
app('mail.manager')->forgetMailers();
|
|
return response()->json(['message' => $e->getMessage()], 400);
|
|
}
|
|
|
|
app('mail.manager')->forgetMailers();
|
|
|
|
return response()->json(['message' => 'Ok'], 200);
|
|
|
|
}
|
|
|
|
} |