mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 14:07:32 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			80 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			80 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /**
 | |
|  * Invoice Ninja (https://invoiceninja.com).
 | |
|  *
 | |
|  * @link https://github.com/invoiceninja/invoiceninja source repository
 | |
|  *
 | |
|  * @copyright Copyright (c) 2024. 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 {
 | |
| 
 | |
|             $sending_email = (isset($company->settings->custom_sending_email) && stripos($company->settings->custom_sending_email, "@")) ? $company->settings->custom_sending_email : $user->email;
 | |
|             $sending_user = (isset($company->settings->email_from_name) && strlen($company->settings->email_from_name) > 2) ? $company->settings->email_from_name : $user->name();
 | |
| 
 | |
|             $mailable = new TestMailServer('Email Server Works!', $sending_email);
 | |
|             $mailable->from($sending_email, $sending_user);
 | |
| 
 | |
|             Mail::mailer('smtp')
 | |
|                 ->to($user->email, $user->present()->name())
 | |
|                 ->send($mailable);
 | |
| 
 | |
|         } catch (\Exception $e) {
 | |
|             app('mail.manager')->forgetMailers();
 | |
|             return response()->json(['message' => $e->getMessage()], 400);
 | |
|         }
 | |
| 
 | |
|         app('mail.manager')->forgetMailers();
 | |
| 
 | |
|         return response()->json(['message' => 'Ok'], 200);
 | |
| 
 | |
|     }
 | |
| 
 | |
| }
 |