mirror of
https://github.com/coollabsio/coolify.git
synced 2026-08-24 10:05:47 -05:00
fix(email): support custom SMTP EHLO domains (#11398)
This commit is contained in:
@@ -113,6 +113,10 @@
|
||||
@endcan
|
||||
<x-forms.input canGate="update" :canResource="$settings" id="smtpTimeout" type="number"
|
||||
helper="Timeout value for sending emails." label="Timeout" />
|
||||
<x-forms.input canGate="update" :canResource="$settings" id="smtpEhloDomain"
|
||||
placeholder="coolify.example.com"
|
||||
helper="Fully qualified domain sent in the SMTP EHLO command. Uses the system default when empty."
|
||||
label="EHLO domain" />
|
||||
</div>
|
||||
</x-application.settings-section>
|
||||
</div>
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
{{-- One bar for the whole page. Three stacked bars made Save run
|
||||
submitResend(), which required an API key even when Resend was off. --}}
|
||||
<x-unsaved-bar action="submit"
|
||||
targets="smtpFromName,smtpFromAddress,smtpHost,smtpPort,smtpEncryption,smtpUsername,smtpPassword,smtpTimeout,resendApiKey" />
|
||||
targets="smtpFromName,smtpFromAddress,smtpHost,smtpPort,smtpEncryption,smtpUsername,smtpPassword,smtpTimeout,smtpEhloDomain,resendApiKey" />
|
||||
|
||||
<form wire:submit="submit">
|
||||
<x-application.settings-section title="Sender">
|
||||
@@ -48,6 +48,9 @@
|
||||
autocomplete="new-password" />
|
||||
<x-forms.input id="smtpTimeout" type="number"
|
||||
helper="Maximum delivery time in seconds." label="Timeout" />
|
||||
<x-forms.input id="smtpEhloDomain" placeholder="coolify.example.com"
|
||||
helper="Fully qualified domain sent in the SMTP EHLO command. Uses the system default when empty."
|
||||
label="EHLO domain" />
|
||||
</div>
|
||||
</x-application.settings-section>
|
||||
</form>
|
||||
|
||||
Reference in New Issue
Block a user