Files
btcpayserver/BTCPayServer/Views/Shared/NotificationEmailWarning.cshtml
2025-10-19 22:31:24 +09:00

9 lines
618 B
Plaintext

@using BTCPayServer.Plugins.Emails
<div class="alert alert-warning alert-dismissible">
<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="@StringLocalizer["Close"]">
<vc:icon symbol="close" />
</button>
<span text-translate="true">The Email settings have not been configured on this server or store yet. Setting this field will not send emails until then.</span>
<a asp-area="@EmailsPlugin.Area" asp-action="StoreEmailSettings" asp-controller="UIStoresEmail" asp-route-storeId="@Model" class="alert-link" text-translate="true">Configure store email settings</a>
</div>