2023-06-01 10:15:33 +00:00
|
|
|
<div>
|
2023-07-27 19:26:15 +00:00
|
|
|
<dialog id="sendTestEmail" class="modal">
|
|
|
|
<form method="dialog" class="flex flex-col gap-2 rounded modal-box" wire:submit.prevent='submit'>
|
2023-08-11 18:19:42 +00:00
|
|
|
<x-forms.input placeholder="test@example.com" id="emails" label="Recepients" required />
|
2023-07-27 19:26:15 +00:00
|
|
|
<x-forms.button onclick="sendTestEmail.close()" wire:click="sendTestNotification">
|
2023-07-28 08:55:26 +00:00
|
|
|
Send Email
|
2023-07-27 19:26:15 +00:00
|
|
|
</x-forms.button>
|
|
|
|
</form>
|
|
|
|
<form method="dialog" class="modal-backdrop">
|
|
|
|
<button>close</button>
|
|
|
|
</form>
|
|
|
|
</dialog>
|
2023-06-02 10:34:45 +00:00
|
|
|
<form wire:submit.prevent='submit' class="flex flex-col">
|
2023-06-01 10:15:33 +00:00
|
|
|
<div class="flex items-center gap-2">
|
2023-06-02 10:34:45 +00:00
|
|
|
<h2>Email</h2>
|
|
|
|
<x-forms.button type="submit">
|
2023-06-01 10:15:33 +00:00
|
|
|
Save
|
|
|
|
</x-forms.button>
|
2023-08-22 15:44:49 +00:00
|
|
|
@if (isInstanceAdmin())
|
2023-06-20 17:08:43 +00:00
|
|
|
<x-forms.button wire:click='copyFromInstanceSettings'>
|
2023-06-07 15:24:37 +00:00
|
|
|
Copy from Instance Settings
|
|
|
|
</x-forms.button>
|
|
|
|
@endif
|
2023-07-27 19:26:15 +00:00
|
|
|
@if ($model->smtp_enabled)
|
|
|
|
<x-forms.button onclick="sendTestEmail.showModal()"
|
2023-08-11 18:19:42 +00:00
|
|
|
class="text-white normal-case btn btn-xs no-animation btn-primary">
|
2023-07-27 19:26:15 +00:00
|
|
|
Send Test Email
|
2023-06-09 13:55:21 +00:00
|
|
|
</x-forms.button>
|
|
|
|
@endif
|
2023-06-01 10:15:33 +00:00
|
|
|
</div>
|
2023-06-19 12:31:42 +00:00
|
|
|
<div class="w-48">
|
2023-08-11 18:19:42 +00:00
|
|
|
<x-forms.checkbox instantSave id="model.smtp_enabled" label="Notification Enabled" />
|
2023-05-25 16:27:52 +00:00
|
|
|
</div>
|
2023-07-28 09:49:25 +00:00
|
|
|
<div class="flex flex-col gap-4">
|
|
|
|
<div class="flex flex-col gap-2 xl:flex-row">
|
|
|
|
<x-forms.input id="model.smtp_recipients"
|
2023-08-11 18:19:42 +00:00
|
|
|
placeholder="If empty, all users will be notified in the team."
|
|
|
|
helper="Email list to send the all notifications to, separated by comma." label="Recipients" />
|
2023-07-28 09:49:25 +00:00
|
|
|
</div>
|
|
|
|
<div class="flex flex-col gap-2 xl:flex-row">
|
|
|
|
<x-forms.input required id="model.smtp_host" helper="SMTP Hostname" placeholder="smtp.mailgun.org"
|
2023-08-11 18:19:42 +00:00
|
|
|
label="Host" />
|
|
|
|
<x-forms.input required id="model.smtp_port" helper="SMTP Port" placeholder="587" label="Port" />
|
2023-07-28 09:49:25 +00:00
|
|
|
<x-forms.input helper="If SMTP through SSL, set it to 'tls'." placeholder="tls"
|
2023-08-11 18:19:42 +00:00
|
|
|
id="model.smtp_encryption" label="Encryption" />
|
2023-07-28 09:49:25 +00:00
|
|
|
</div>
|
|
|
|
<div class="flex flex-col gap-2 xl:flex-row">
|
2023-08-11 18:19:42 +00:00
|
|
|
<x-forms.input id="model.smtp_username" label="SMTP Username" />
|
|
|
|
<x-forms.input type="password" id="model.smtp_password" label="SMTP Password" />
|
|
|
|
<x-forms.input id="model.smtp_timeout" helper="Timeout value for sending emails." label="Timeout" />
|
2023-07-28 09:49:25 +00:00
|
|
|
</div>
|
|
|
|
<div class="flex flex-col gap-2 xl:flex-row">
|
2023-08-11 18:19:42 +00:00
|
|
|
<x-forms.input required id="model.smtp_from_name" helper="Name used in emails." label="From Name" />
|
2023-07-28 09:49:25 +00:00
|
|
|
<x-forms.input required id="model.smtp_from_address" helper="Email address used in emails."
|
2023-08-11 18:19:42 +00:00
|
|
|
label="From Address" />
|
2023-07-28 09:49:25 +00:00
|
|
|
</div>
|
2023-05-25 16:27:52 +00:00
|
|
|
</div>
|
|
|
|
</form>
|
2023-07-27 19:26:15 +00:00
|
|
|
@if (data_get($model, 'smtp_enabled'))
|
2023-06-20 13:04:46 +00:00
|
|
|
<h4 class="mt-4">Subscribe to events</h4>
|
2023-06-20 17:08:43 +00:00
|
|
|
<div class="w-64">
|
2023-08-27 13:23:47 +00:00
|
|
|
@if (isDev())
|
2023-08-11 18:19:42 +00:00
|
|
|
<x-forms.checkbox instantSave="saveModel" id="model.smtp_notifications_test" label="Test" />
|
2023-06-20 13:04:46 +00:00
|
|
|
@endif
|
2023-08-10 19:00:02 +00:00
|
|
|
<h4 class="mt-4">General</h4>
|
2023-07-27 19:26:15 +00:00
|
|
|
<x-forms.checkbox instantSave="saveModel" id="model.smtp_notifications_status_changes"
|
2023-08-11 18:19:42 +00:00
|
|
|
label="Container Status Changes" />
|
2023-08-10 19:00:02 +00:00
|
|
|
<h4 class="mt-4">Applications</h4>
|
2023-08-11 18:19:42 +00:00
|
|
|
<x-forms.checkbox instantSave="saveModel" id="model.smtp_notifications_deployments" label="Deployments" />
|
2023-08-10 19:00:02 +00:00
|
|
|
<h4 class="mt-4">Databases</h4>
|
|
|
|
<x-forms.checkbox instantSave="saveModel" id="model.smtp_notifications_database_backups"
|
2023-08-11 18:19:42 +00:00
|
|
|
label="Backup Statuses" />
|
2023-06-20 13:04:46 +00:00
|
|
|
</div>
|
|
|
|
@endif
|
2023-05-25 16:27:52 +00:00
|
|
|
</div>
|