2023-06-01 10:15:33 +00:00
|
|
|
<div>
|
2023-06-02 10:34:45 +00:00
|
|
|
<form wire:submit.prevent='submit' class="flex flex-col">
|
2023-06-01 10:15:33 +00:00
|
|
|
<div class="flex items-center gap-2">
|
2023-06-02 10:34:45 +00:00
|
|
|
<h2>Email</h2>
|
|
|
|
<x-forms.button type="submit">
|
2023-06-01 10:15:33 +00:00
|
|
|
Save
|
|
|
|
</x-forms.button>
|
|
|
|
</div>
|
2023-05-25 16:27:52 +00:00
|
|
|
<div class="flex flex-col w-96">
|
2023-06-01 11:24:20 +00:00
|
|
|
<x-forms.checkbox instantSave id="model.extra_attributes.smtp_active" label="Notification Enabled" />
|
2023-05-25 16:27:52 +00:00
|
|
|
</div>
|
2023-06-02 10:34:45 +00:00
|
|
|
|
|
|
|
<div class="flex gap-2">
|
|
|
|
<x-forms.input required id="model.extra_attributes.recipients"
|
|
|
|
helper="Email list to send the all notifications to, separated by comma." label="Recipient(s)" />
|
|
|
|
<x-forms.input id="model.extra_attributes.test_notification_recipients"
|
|
|
|
label="Test Notification Recipient(s)"
|
|
|
|
helper="Email list to send the test notification to, separated by comma." />
|
2023-05-25 16:27:52 +00:00
|
|
|
</div>
|
|
|
|
<div class="flex flex-col gap-2 xl:flex-row">
|
|
|
|
<div class="flex flex-col w-96">
|
2023-06-02 10:34:45 +00:00
|
|
|
<x-forms.input required id="model.extra_attributes.smtp_host" helper="SMTP Hostname"
|
|
|
|
placeholder="smtp.mailgun.org" label="Host" />
|
|
|
|
<x-forms.input required id="model.extra_attributes.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.extra_attributes.smtp_encryption" label="Encryption" />
|
2023-05-25 16:27:52 +00:00
|
|
|
</div>
|
|
|
|
<div class="flex flex-col w-96">
|
2023-06-02 10:34:45 +00:00
|
|
|
<x-forms.input id="model.extra_attributes.smtp_username" helper="SMTP Username" label="Username" />
|
|
|
|
<x-forms.input type="password" helper="SMTP Password" id="model.extra_attributes.smtp_password"
|
|
|
|
label="Password" />
|
|
|
|
<x-forms.input id="model.extra_attributes.smtp_timeout" helper="Timeout value for sending emails."
|
|
|
|
label="Timeout" />
|
2023-05-25 16:27:52 +00:00
|
|
|
</div>
|
|
|
|
<div class="flex flex-col w-96">
|
2023-06-02 10:34:45 +00:00
|
|
|
<x-forms.input required id="model.extra_attributes.from_name" helper="Name used in emails."
|
|
|
|
label="From Name" />
|
|
|
|
<x-forms.input required id="model.extra_attributes.from_address" helper="Email address used in emails."
|
|
|
|
label="From Address" />
|
2023-05-25 16:27:52 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|