coolify/resources/views/livewire/notifications/email-settings.blade.php

61 lines
3.1 KiB
PHP
Raw Normal View History

2023-06-01 12:15:33 +02:00
<div>
2023-06-02 12:34:45 +02:00
<form wire:submit.prevent='submit' class="flex flex-col">
2023-06-01 12:15:33 +02:00
<div class="flex items-center gap-2">
2023-06-02 12:34:45 +02:00
<h2>Email</h2>
<x-forms.button type="submit">
2023-06-01 12:15:33 +02:00
Save
</x-forms.button>
2023-06-08 11:43:14 +02:00
@if (auth()->user()->isInstanceAdmin())
2023-06-20 19:08:43 +02:00
<x-forms.button wire:click='copyFromInstanceSettings'>
2023-06-07 17:24:37 +02:00
Copy from Instance Settings
</x-forms.button>
@endif
2023-06-20 19:08:43 +02:00
@if ($model->smtp->enabled)
2023-06-09 15:55:21 +02:00
<x-forms.button class="text-white normal-case btn btn-xs no-animation btn-primary"
wire:click="sendTestNotification">
Send Test Notifications
</x-forms.button>
@endif
2023-06-01 12:15:33 +02:00
</div>
2023-06-19 14:31:42 +02:00
<div class="w-48">
2023-06-20 19:08:43 +02:00
<x-forms.checkbox instantSave id="model.smtp.enabled" label="Notification Enabled" />
2023-05-25 18:27:52 +02:00
</div>
2023-06-02 12:34:45 +02:00
2023-06-14 11:54:00 +02:00
<div class="flex flex-col gap-2 xl:flex-row">
2023-06-20 19:08:43 +02:00
<x-forms.input id="model.smtp.recipients" placeholder="If empty, all users will be notified in the team."
2023-06-16 12:36:14 +02:00
helper="Email list to send the all notifications to, separated by comma." label="Recipients" />
2023-06-20 19:08:43 +02:00
<x-forms.input id="model.smtp.test_recipients" label="Test Notification Recipients"
2023-06-12 12:52:58 +02:00
placeholder="If empty, all users will be notified in the team."
2023-06-02 12:34:45 +02:00
helper="Email list to send the test notification to, separated by comma." />
2023-05-25 18:27:52 +02:00
</div>
<div class="flex flex-col gap-2 xl:flex-row">
2023-06-20 19:08:43 +02:00
<x-forms.input required id="model.smtp.host" helper="SMTP Hostname" placeholder="smtp.mailgun.org"
label="Host" />
<x-forms.input required id="model.smtp.port" helper="SMTP Port" placeholder="587" label="Port" />
<x-forms.input helper="If SMTP through SSL, set it to 'tls'." placeholder="tls" id="model.smtp.encryption"
label="Encryption" />
2023-06-14 11:54:00 +02:00
</div>
2023-06-21 10:53:24 +02:00
<div class="flex flex-col gap-2 xl:flex-row">
<x-forms.input id="model.smtp.username" helper="SMTP Username" label="SMTP Username" />
<x-forms.input type="password" helper="SMTP Password" id="model.smtp.password" label="SMTP Password" />
2023-06-20 19:08:43 +02:00
<x-forms.input id="model.smtp.timeout" helper="Timeout value for sending emails." label="Timeout" />
2023-06-21 10:53:24 +02:00
</div>
<div class="flex flex-col gap-2 xl:flex-row">
<x-forms.input required id="model.smtp.from_name" helper="Name used in emails." label="From Name" />
<x-forms.input required id="model.smtp.from_address" helper="Email address used in emails."
label="From Address" />
2023-05-25 18:27:52 +02:00
</div>
</form>
2023-06-20 19:08:43 +02:00
@if (data_get($model, 'smtp.enabled'))
2023-06-20 15:04:46 +02:00
<h4 class="mt-4">Subscribe to events</h4>
2023-06-20 19:08:43 +02:00
<div class="w-64">
2023-06-20 15:04:46 +02:00
@if (isDev())
2023-06-20 19:08:43 +02:00
<x-forms.checkbox instantSave="saveModel" id="model.smtp_notifications.test"
2023-06-20 15:04:46 +02:00
label="Test Notifications" />
@endif
2023-06-20 19:08:43 +02:00
<x-forms.checkbox instantSave="saveModel" id="model.smtp_notifications.deployments"
2023-06-20 15:04:46 +02:00
label="New Deployments" />
</div>
@endif
2023-05-25 18:27:52 +02:00
</div>