2023-06-06 13:30:33 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Livewire\Settings;
|
|
|
|
|
|
|
|
use App\Mail\TestTransactionalEmail;
|
|
|
|
use App\Models\InstanceSettings;
|
2023-06-06 15:50:13 +00:00
|
|
|
use App\Notifications\TestTransactionEmail;
|
2023-06-06 13:30:33 +00:00
|
|
|
use Illuminate\Support\Facades\Mail;
|
2023-06-06 15:50:13 +00:00
|
|
|
use Illuminate\Support\Facades\Notification;
|
2023-06-06 13:30:33 +00:00
|
|
|
use Livewire\Component;
|
|
|
|
|
|
|
|
class Email extends Component
|
|
|
|
{
|
|
|
|
public InstanceSettings $settings;
|
|
|
|
|
|
|
|
protected $rules = [
|
2023-06-06 15:50:13 +00:00
|
|
|
'settings.extra_attributes.smtp_host' => 'required',
|
|
|
|
'settings.extra_attributes.smtp_port' => 'required|numeric',
|
|
|
|
'settings.extra_attributes.smtp_encryption' => 'nullable',
|
|
|
|
'settings.extra_attributes.smtp_username' => 'nullable',
|
|
|
|
'settings.extra_attributes.smtp_password' => 'nullable',
|
|
|
|
'settings.extra_attributes.smtp_timeout' => 'nullable',
|
|
|
|
'settings.extra_attributes.smtp_recipients' => 'required',
|
|
|
|
'settings.extra_attributes.smtp_test_recipients' => 'nullable',
|
|
|
|
'settings.extra_attributes.smtp_from_address' => 'required|email',
|
|
|
|
'settings.extra_attributes.smtp_from_name' => 'required',
|
2023-06-06 13:30:33 +00:00
|
|
|
];
|
|
|
|
public function test_email()
|
|
|
|
{
|
2023-06-06 15:50:13 +00:00
|
|
|
Notification::send($this->settings, new TestTransactionEmail);
|
2023-06-06 13:30:33 +00:00
|
|
|
}
|
2023-06-06 15:50:13 +00:00
|
|
|
// public function test_email()
|
|
|
|
// {
|
|
|
|
// config()->set('mail.default', 'smtp');
|
|
|
|
// config()->set('mail.mailers.smtp', [
|
|
|
|
// "transport" => "smtp",
|
|
|
|
// "host" => $this->settings->smtp_host,
|
|
|
|
// "port" => $this->settings->smtp_port,
|
|
|
|
// "encryption" => $this->settings->smtp_encryption,
|
|
|
|
// "username" => $this->settings->smtp_username,
|
|
|
|
// "password" => $this->settings->smtp_password,
|
|
|
|
// ]);
|
|
|
|
|
|
|
|
// $this->send_email();
|
|
|
|
// }
|
|
|
|
// public function test_email_local()
|
|
|
|
// {
|
|
|
|
// config()->set('mail.default', 'smtp');
|
|
|
|
// config()->set('mail.mailers.smtp', [
|
|
|
|
// "transport" => "smtp",
|
|
|
|
// "host" => 'coolify-mail',
|
|
|
|
// "port" => 1025,
|
|
|
|
// ]);
|
|
|
|
// $this->send_email();
|
|
|
|
// }
|
|
|
|
// private function send_email()
|
|
|
|
// {
|
|
|
|
// }
|
2023-06-06 13:30:33 +00:00
|
|
|
public function submit()
|
|
|
|
{
|
|
|
|
$this->validate();
|
2023-06-06 15:50:13 +00:00
|
|
|
$this->settings->extra_attributes->smtp_recipients = str_replace(' ', '', $this->settings->extra_attributes->smtp_recipients);
|
|
|
|
$this->settings->extra_attributes->smtp_test_recipients = str_replace(' ', '', $this->settings->extra_attributes->smtp_test_recipients);
|
2023-06-06 13:30:33 +00:00
|
|
|
$this->settings->save();
|
|
|
|
}
|
|
|
|
}
|