19 lines
482 B
Plaintext
19 lines
482 B
Plaintext
@using EnotaryoPH.Web.Mailables
|
|
@model SignatoryViewModel
|
|
@{
|
|
ViewBag.Heading = "Welcome!";
|
|
ViewBag.Preview = "Signatory Mail";
|
|
}
|
|
|
|
<p>
|
|
|
|
Hello, you have been invited to enotaryo as a @Model.SignatoryType by @Model.MainPrincipalName.
|
|
|
|
Please click here to get you started. @await Component.InvokeAsync("EmailLinkButton", new { text = "Registration Page", url = Model.InvitationURL })
|
|
</p>
|
|
|
|
@section links
|
|
{
|
|
<a href="@Model.InvitationURL">Registration Page</a>
|
|
}
|