2020-03-26 00:40:09 +01:00
|
|
|
<div class="bg-white shadow overflow-hidden rounded-lg mt-6">
|
|
|
|
<div class="px-4 py-5 border-b border-gray-200 sm:px-6">
|
|
|
|
<h3 class="text-lg leading-6 font-medium text-gray-900">
|
|
|
|
{{ ctrans('texts.email_settings') }}
|
|
|
|
</h3>
|
|
|
|
<p class="mt-1 max-w-2xl text-sm leading-5 text-gray-500">
|
|
|
|
Let's configure e-mail settings.
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<dl>
|
|
|
|
<div class="bg-gray-50 px-4 py-5 sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6 sm:flex sm:items-center">
|
|
|
|
<dt class="text-sm leading-5 font-medium text-gray-500">
|
|
|
|
{{ ctrans('texts.driver') }}
|
|
|
|
</dt>
|
|
|
|
<dd class="text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2">
|
2020-03-26 22:43:44 +01:00
|
|
|
<select name="mail_driver" class="input form-select">
|
2020-03-26 00:40:09 +01:00
|
|
|
<option value="1">SMTP</option>
|
|
|
|
</select>
|
|
|
|
</dd>
|
|
|
|
</div>
|
|
|
|
<div class="bg-white px-4 py-5 sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6 sm:flex sm:items-center">
|
|
|
|
<dt class="text-sm leading-5 font-medium text-gray-500">
|
|
|
|
{{ ctrans('texts.from_name') }}
|
|
|
|
</dt>
|
|
|
|
<dd class="text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2">
|
2020-03-26 22:43:44 +01:00
|
|
|
<input type="text" class="input" name="mail_name">
|
2020-03-26 00:40:09 +01:00
|
|
|
</dd>
|
|
|
|
</div>
|
|
|
|
<div class="bg-gray-50 px-4 py-5 sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6 sm:flex sm:items-center">
|
|
|
|
<dt class="text-sm leading-5 font-medium text-gray-500">
|
|
|
|
{{ ctrans('texts.from_address') }}
|
|
|
|
</dt>
|
|
|
|
<dd class="text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2">
|
2020-03-26 22:43:44 +01:00
|
|
|
<input type="email" class="input" name="mail_address">
|
2020-03-26 00:40:09 +01:00
|
|
|
</dd>
|
|
|
|
</div>
|
|
|
|
<div class="bg-white px-4 py-5 sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6 sm:flex sm:items-center">
|
|
|
|
<dt class="text-sm leading-5 font-medium text-gray-500">
|
|
|
|
{{ ctrans('texts.username') }}
|
|
|
|
</dt>
|
|
|
|
<dd class="text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2">
|
2020-03-26 22:43:44 +01:00
|
|
|
<input type="text" class="input" name="mail_username">
|
2020-03-26 00:40:09 +01:00
|
|
|
</dd>
|
|
|
|
</div>
|
|
|
|
<div class="bg-gray-50 px-4 py-5 sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6 sm:flex sm:items-center">
|
|
|
|
<dt class="text-sm leading-5 font-medium text-gray-500">
|
|
|
|
{{ ctrans('texts.host') }}
|
|
|
|
</dt>
|
|
|
|
<dd class="text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2">
|
2020-03-26 22:43:44 +01:00
|
|
|
<input type="text" class="input" name="mail_host">
|
2020-03-26 00:40:09 +01:00
|
|
|
</dd>
|
|
|
|
</div>
|
|
|
|
<div class="bg-white px-4 py-5 sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6 sm:flex sm:items-center">
|
|
|
|
<dt class="text-sm leading-5 font-medium text-gray-500">
|
|
|
|
{{ ctrans('texts.port') }}
|
|
|
|
</dt>
|
|
|
|
<dd class="text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2">
|
2020-03-26 22:43:44 +01:00
|
|
|
<input type="text" class="input" name="mail_port">
|
2020-03-26 00:40:09 +01:00
|
|
|
</dd>
|
|
|
|
</div>
|
|
|
|
<div class="bg-gray-50 px-4 py-5 sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6 sm:flex sm:items-center">
|
|
|
|
<dt class="text-sm leading-5 font-medium text-gray-500">
|
|
|
|
{{ ctrans('texts.encryption') }}
|
|
|
|
</dt>
|
|
|
|
<dd class="text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2">
|
2020-03-26 22:43:44 +01:00
|
|
|
<select name="encryption" class="input form-select">
|
2020-03-26 00:40:09 +01:00
|
|
|
<option value="1">TLS</option>
|
|
|
|
<option value="2">SSL</option>
|
|
|
|
</select>
|
|
|
|
</dd>
|
|
|
|
</div>
|
|
|
|
<div class="bg-white px-4 py-5 sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6 sm:flex sm:items-center">
|
|
|
|
<dt class="text-sm leading-5 font-medium text-gray-500">
|
2020-03-26 22:43:44 +01:00
|
|
|
{{ ctrans('texts.password') }}
|
2020-03-26 00:40:09 +01:00
|
|
|
</dt>
|
|
|
|
<dd class="text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2">
|
2020-03-26 22:43:44 +01:00
|
|
|
<input type="password" class="input" name="mail_password">
|
2020-03-26 00:40:09 +01:00
|
|
|
</dd>
|
|
|
|
</div>
|
|
|
|
<div class="bg-gray-50 px-4 py-5 sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6 sm:flex sm:items-center">
|
|
|
|
<dt class="text-sm leading-5 font-medium text-gray-500">
|
2020-03-26 22:43:44 +01:00
|
|
|
<button type="button" class="button button-primary py-2 px-3 text-xs" id="test-smtp-connection">
|
|
|
|
{{ ctrans('texts.test_connection') }}
|
|
|
|
</button>
|
2020-03-26 00:40:09 +01:00
|
|
|
</dt>
|
|
|
|
<dd class="text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2">
|
2020-03-26 22:43:44 +01:00
|
|
|
<div class="alert py-2 bg-gray-50" id="smtp-response"></div>
|
2020-03-26 00:40:09 +01:00
|
|
|
</dd>
|
|
|
|
</div>
|
|
|
|
</dl>
|
|
|
|
</div>
|
|
|
|
</div>
|