26 lines
674 B
Plaintext
26 lines
674 B
Plaintext
@using EnotaryoPH.Web.Mailables
|
|
@model OneTimePasswordViewModel
|
|
@{
|
|
ViewBag.Heading = "One Time Password";
|
|
ViewBag.Preview = "Your OTP";
|
|
}
|
|
|
|
<p>
|
|
Hello @Model.ParticipantName,
|
|
|
|
This is your one time password:
|
|
|
|
<blockquote>
|
|
@Model.OTP
|
|
</blockquote>
|
|
|
|
Please do not share this code with anyone other than the Notary Public, Atty. @Model.LawyerName during the Video Conference.
|
|
|
|
You can join the e-Notaryo video conference by clicking this button: @await Component.InvokeAsync("EmailLinkButton", new { text = "Video Conference", url = Model.MeetingRoomURL })
|
|
</p>
|
|
|
|
@section links
|
|
{
|
|
<a href="@Model.MeetingRoomURL">Meeting Room Page</a>
|
|
}
|