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

42 lines
2.1 KiB
PHP
Raw Normal View History

2023-06-07 22:07:26 +02:00
<div>
2023-06-13 10:51:58 +02:00
<form wire:submit.prevent='submit' class="flex flex-col pb-10">
2023-06-06 15:30:33 +02:00
<div class="flex items-center gap-2">
<h3>Transactional Emails</h3>
<x-forms.button type="submit">
Save
</x-forms.button>
2023-06-21 10:53:24 +02:00
@if ($settings->smtp->enabled)
<x-forms.button isHighlighted wire:click='testNotification'>
Send Test Email
</x-forms.button>
@endif
2023-06-01 12:15:33 +02:00
</div>
2023-06-16 12:35:40 +02:00
<div class="pt-2 pb-4 ">SMTP settings for password resets, invitations, etc.</div>
2023-06-20 20:30:36 +02:00
<div class="w-32">
2023-06-20 19:08:43 +02:00
<x-forms.checkbox instantSave id="settings.smtp.enabled" label="Enabled" />
2023-06-13 10:51:58 +02:00
</div>
2023-06-06 15:30:33 +02:00
<div class="flex items-end gap-2">
2023-06-20 19:08:43 +02:00
<x-forms.input id="settings.smtp.test_recipients" label="Test Recipients"
2023-06-06 15:30:33 +02:00
helper="Email list to send a test email to, separated by comma." />
2023-06-21 10:53:24 +02:00
</div>
<div class="flex flex-col w-full gap-2 xl:flex-row">
<x-forms.input required id="settings.smtp.host" helper="SMTP Hostname" placeholder="smtp.mailgun.org"
label="Host" />
<x-forms.input required id="settings.smtp.port" helper="SMTP Port" placeholder="587" label="Port" />
<x-forms.input id="settings.smtp.encryption" helper="If SMTP through SSL, set it to 'tls'."
placeholder="tls" label="Encryption" />
</div>
<div class="flex flex-col w-full gap-2 xl:flex-row">
<x-forms.input id="settings.smtp.username" helper="SMTP Username" label="SMTP Username" />
<x-forms.input id="settings.smtp.password" type="password" helper="SMTP Password" label="SMTP Password" />
<x-forms.input id="settings.smtp.timeout" helper="Timeout value for sending emails." label="Timeout" />
2023-06-01 12:15:33 +02:00
</div>
2023-06-21 10:53:24 +02:00
<div class="flex flex-col w-full gap-2 xl:flex-row">
<x-forms.input required id="settings.smtp.from_name" helper="Name used in emails." label="From Name" />
<x-forms.input required id="settings.smtp.from_address" helper="Email address used in emails."
label="From Address" />
2023-06-01 12:15:33 +02:00
</div>
2023-06-06 15:30:33 +02:00
</form>
</div>