2023-06-07 22:07:26 +02:00
|
|
|
<div>
|
2023-07-28 10:55:26 +02:00
|
|
|
<dialog id="sendTestEmail" class="modal">
|
|
|
|
<form method="dialog" class="flex flex-col gap-2 rounded modal-box" wire:submit.prevent='submit'>
|
2023-08-08 11:51:36 +02:00
|
|
|
<x-forms.input placeholder="test@example.com" id="emails" label="Recepients" required/>
|
2023-07-28 10:55:26 +02:00
|
|
|
<x-forms.button onclick="sendTestEmail.close()" wire:click="sendTestNotification">
|
|
|
|
Send Email
|
|
|
|
</x-forms.button>
|
|
|
|
</form>
|
|
|
|
<form method="dialog" class="modal-backdrop">
|
|
|
|
<button>close</button>
|
|
|
|
</form>
|
|
|
|
</dialog>
|
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">
|
2023-08-11 16:13:53 +02:00
|
|
|
<h2>Transactional Emails</h2>
|
2023-06-06 15:30:33 +02:00
|
|
|
<x-forms.button type="submit">
|
|
|
|
Save
|
|
|
|
</x-forms.button>
|
2023-07-27 21:26:15 +02:00
|
|
|
@if ($settings->smtp_enabled)
|
2023-07-28 10:55:26 +02:00
|
|
|
<x-forms.button onclick="sendTestEmail.showModal()"
|
2023-08-08 11:51:36 +02:00
|
|
|
class="text-white normal-case btn btn-xs no-animation btn-primary">
|
2023-06-21 10:53:24 +02:00
|
|
|
Send Test Email
|
|
|
|
</x-forms.button>
|
|
|
|
@endif
|
2023-06-01 12:15:33 +02:00
|
|
|
</div>
|
2023-08-11 16:13:53 +02:00
|
|
|
<div class="pb-4 ">SMTP settings for password resets, invitations, etc.</div>
|
2023-07-28 09:10:35 +02:00
|
|
|
<div class="w-32 pb-4">
|
2023-08-08 11:51:36 +02:00
|
|
|
<x-forms.checkbox instantSave id="settings.smtp_enabled" label="Enabled"/>
|
2023-06-13 10:51:58 +02:00
|
|
|
</div>
|
2023-07-28 09:10:35 +02:00
|
|
|
<div class="flex flex-col gap-4">
|
|
|
|
<div class="flex flex-col w-full gap-2 xl:flex-row">
|
2023-08-08 11:51:36 +02:00
|
|
|
<x-forms.input required id="settings.smtp_host" placeholder="smtp.mailgun.org" label="Host"/>
|
|
|
|
<x-forms.input required id="settings.smtp_port" placeholder="587" label="Port"/>
|
2023-07-28 10:55:26 +02:00
|
|
|
<x-forms.input id="settings.smtp_encryption" helper="If SMTP uses SSL, set it to 'tls'."
|
2023-08-08 11:51:36 +02:00
|
|
|
placeholder="tls" label="Encryption"/>
|
2023-07-28 09:10:35 +02:00
|
|
|
</div>
|
|
|
|
<div class="flex flex-col w-full gap-2 xl:flex-row">
|
2023-08-08 11:51:36 +02:00
|
|
|
<x-forms.input id="settings.smtp_username" label="SMTP Username"/>
|
|
|
|
<x-forms.input id="settings.smtp_password" type="password" label="SMTP Password"/>
|
|
|
|
<x-forms.input id="settings.smtp_timeout" helper="Timeout value for sending emails." label="Timeout"/>
|
2023-07-28 09:10:35 +02:00
|
|
|
</div>
|
|
|
|
<div class="flex flex-col w-full gap-2 xl:flex-row">
|
2023-08-08 11:51:36 +02:00
|
|
|
<x-forms.input required id="settings.smtp_from_name" helper="Name used in emails." label="From Name"/>
|
2023-07-28 09:10:35 +02:00
|
|
|
<x-forms.input required id="settings.smtp_from_address" helper="Email address used in emails."
|
2023-08-08 11:51:36 +02:00
|
|
|
label="From Address"/>
|
2023-07-28 09:10:35 +02:00
|
|
|
</div>
|
2023-06-01 12:15:33 +02:00
|
|
|
</div>
|
2023-06-06 15:30:33 +02:00
|
|
|
</form>
|
|
|
|
</div>
|