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

43 lines
2.3 KiB
PHP
Raw Normal View History

2023-06-07 22:07:26 +02:00
<div>
2023-06-06 15:30:33 +02:00
<form wire:submit.prevent='submit' class="flex flex-col">
<div class="flex items-center gap-2">
<h3>Transactional Emails</h3>
<x-forms.button type="submit">
Save
</x-forms.button>
2023-06-01 12:15:33 +02:00
</div>
2023-06-12 12:21:48 +02:00
<div class="pt-2 pb-4 text-sm">SMTP settings for password resets, invitations, etc.</div>
2023-06-06 15:30:33 +02:00
<div class="flex items-end gap-2">
2023-06-06 17:50:13 +02:00
<x-forms.input id="settings.extra_attributes.smtp_test_recipients" label="Test Recipient(s)"
2023-06-06 15:30:33 +02:00
helper="Email list to send a test email to, separated by comma." />
<x-forms.button wire:click='test_email'>
2023-06-08 08:43:45 +02:00
Send Test Email
2023-06-06 15:30:33 +02:00
</x-forms.button>
2023-06-01 12:15:33 +02:00
</div>
2023-06-06 15:30:33 +02:00
<div class="flex flex-col gap-2 xl:flex-row">
<div class="flex flex-col w-96">
2023-06-06 17:50:13 +02:00
<x-forms.input required id="settings.extra_attributes.smtp_host" helper="SMTP Hostname"
placeholder="smtp.mailgun.org" label="Host" />
<x-forms.input required id="settings.extra_attributes.smtp_port" helper="SMTP Port" placeholder="587"
label="Port" />
<x-forms.input id="settings.extra_attributes.smtp_encryption"
helper="If SMTP through SSL, set it to 'tls'." placeholder="tls" label="Encryption" />
2023-06-06 15:30:33 +02:00
</div>
<div class="flex flex-col w-96">
2023-06-08 08:43:45 +02:00
<x-forms.input id="settings.extra_attributes.smtp_username" helper="SMTP Username"
label="SMTP Username" />
2023-06-06 17:50:13 +02:00
<x-forms.input id="settings.extra_attributes.smtp_password" type="password" helper="SMTP Password"
2023-06-08 08:43:45 +02:00
label="SMTP Password" />
2023-06-06 17:50:13 +02:00
<x-forms.input id="settings.extra_attributes.smtp_timeout" helper="Timeout value for sending emails."
label="Timeout" />
2023-06-06 15:30:33 +02:00
</div>
<div class="flex flex-col w-96">
2023-06-06 17:50:13 +02:00
<x-forms.input required id="settings.extra_attributes.smtp_from_name" helper="Name used in emails."
label="From Name" />
<x-forms.input required id="settings.extra_attributes.smtp_from_address"
helper="Email address used in emails." label="From Address" />
2023-06-06 15:30:33 +02:00
</div>
2023-06-01 12:15:33 +02:00
</div>
2023-06-06 15:30:33 +02:00
</form>
</div>