mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-06-01 01:54:00 +00:00
19 lines
560 B
Plaintext
19 lines
560 B
Plaintext
<tr>
|
|
<td style="padding: 30px 40px 40px 40px; text-align: center; border-top: 1px solid #eeeeee;">
|
|
@if (!string.IsNullOrEmpty(FooterText))
|
|
{
|
|
<p style="margin: 0 0 10px 0; font-size: 13px; line-height: 20px; color: #999999;">
|
|
@FooterText
|
|
</p>
|
|
}
|
|
<p style="margin: 0; font-size: 13px; line-height: 20px; color: #999999;">
|
|
This is an automated message. Please do not reply as this inbox is unmonitored.
|
|
</p>
|
|
</td>
|
|
</tr>
|
|
|
|
@code {
|
|
[Parameter]
|
|
public string? FooterText { get; set; }
|
|
}
|