2023-06-07 20:07:26 +00:00
|
|
|
<div>
|
2023-06-13 08:51:58 +00:00
|
|
|
<form wire:submit.prevent='submit' class="flex flex-col pb-10">
|
2023-06-06 13:30:33 +00:00
|
|
|
<div class="flex items-center gap-2">
|
|
|
|
<h3>Transactional Emails</h3>
|
|
|
|
<x-forms.button type="submit">
|
|
|
|
Save
|
|
|
|
</x-forms.button>
|
2023-07-27 19:26:15 +00:00
|
|
|
@if ($settings->smtp_enabled)
|
2023-06-21 08:53:24 +00:00
|
|
|
<x-forms.button isHighlighted wire:click='testNotification'>
|
|
|
|
Send Test Email
|
|
|
|
</x-forms.button>
|
|
|
|
@endif
|
2023-06-01 10:15:33 +00:00
|
|
|
</div>
|
2023-06-16 10:35:40 +00:00
|
|
|
<div class="pt-2 pb-4 ">SMTP settings for password resets, invitations, etc.</div>
|
2023-07-28 07:10:35 +00:00
|
|
|
<div class="w-32 pb-4">
|
2023-07-27 19:26:15 +00:00
|
|
|
<x-forms.checkbox instantSave id="settings.smtp_enabled" label="Enabled" />
|
2023-06-13 08:51:58 +00:00
|
|
|
</div>
|
2023-07-28 07:10:35 +00:00
|
|
|
<div class="flex flex-col gap-4">
|
|
|
|
<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" />
|
|
|
|
</div>
|
|
|
|
<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" />
|
|
|
|
</div>
|
2023-06-01 10:15:33 +00:00
|
|
|
</div>
|
2023-06-06 13:30:33 +00:00
|
|
|
</form>
|
|
|
|
</div>
|