mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 14:22:40 +01:00
* Resolves: check box to toggle in various setting views * resolve conflicts * Notification logic reversal * remove transform property in the toggle * Handle email tls certificate check * Unifications and fixes --------- Co-authored-by: Dennis Reimann <mail@dennisreimann.de>
28 lines
1 KiB
Text
28 lines
1 KiB
Text
@model ServerEmailsViewModel
|
|
@{
|
|
ViewData.SetActivePage(ServerNavPages.Emails, "Emails");
|
|
}
|
|
|
|
<h3 class="mb-4">Email Server</h3>
|
|
<form method="post" autocomplete="off">
|
|
<div class="form-group" style="margin:1rem 0 2rem">
|
|
<div class="d-flex align-items-center">
|
|
<input asp-for="EnableStoresToUseServerEmailSettings" type="checkbox" class="btcpay-toggle me-3"/>
|
|
<div>
|
|
<label asp-for="EnableStoresToUseServerEmailSettings" class="form-check-label"></label>
|
|
<div class="text-muted">
|
|
This can be overridden at the Store level.
|
|
<a href="https://docs.btcpayserver.org/Notifications/#server-emails" target="_blank" rel="noreferrer noopener">
|
|
<vc:icon symbol="info" />
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<partial name="EmailsBody" model="Model" />
|
|
<partial name="EmailsTest" model="Model" />
|
|
</form>
|
|
|
|
@section PageFootContent {
|
|
<partial name="_ValidationScriptsPartial" />
|
|
}
|