2024-03-14 10:25:40 +01:00
|
|
|
@model BTCPayServer.Models.EmailsViewModel
|
|
|
|
|
2024-06-19 15:23:10 +02:00
|
|
|
<h3 class="my-3">Testing</h3>
|
2024-03-14 10:25:40 +01:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-xl-10 col-xxl-constrain">
|
|
|
|
<div class="form-group">
|
|
|
|
<label asp-for="TestEmail" class="form-label">To test your settings, enter an email address</label>
|
|
|
|
<input asp-for="TestEmail" placeholder="Firstname Lastname <email@example.com>" class="form-control" />
|
|
|
|
<span asp-validation-for="TestEmail" class="text-danger"></span>
|
|
|
|
</div>
|
|
|
|
<button type="submit" class="btn btn-secondary mt-2" name="command" value="Test" id="Test">Send Test Email</button>
|
|
|
|
</div>
|
|
|
|
</div>
|