43 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| @using DysonNetwork.Pass.Localization
 | |
| @using Microsoft.Extensions.Localization
 | |
| @using EmailResource = DysonNetwork.Pass.Localization.EmailResource
 | |
| 
 | |
| <EmailLayout>
 | |
|     <tr>
 | |
|         <td class="wrapper">
 | |
|             <p class="font-bold">@(Localizer["LandingHeader1"])</p>
 | |
|             <p>@(Localizer["LandingPara1"]) @@@Name,</p>
 | |
|             <p>@(Localizer["LandingPara2"])</p>
 | |
|             <p>@(Localizer["LandingPara3"])</p>
 | |
| 
 | |
|             <table role="presentation" border="0" cellpadding="0" cellspacing="0" class="btn btn-primary">
 | |
|                 <tbody>
 | |
|                 <tr>
 | |
|                     <td align="left">
 | |
|                         <table role="presentation" border="0" cellpadding="0" cellspacing="0">
 | |
|                             <tbody>
 | |
|                             <tr>
 | |
|                                 <td>
 | |
|                                     <a href="@Link" target="_blank">
 | |
|                                         @(Localizer["LandingButton1"])
 | |
|                                     </a>
 | |
|                                 </td>
 | |
|                             </tr>
 | |
|                             </tbody>
 | |
|                         </table>
 | |
|                     </td>
 | |
|                 </tr>
 | |
|                 </tbody>
 | |
|             </table>
 | |
| 
 | |
|             <p>@(Localizer["LandingPara4"])</p>
 | |
|         </td>
 | |
|     </tr>
 | |
| </EmailLayout>
 | |
| 
 | |
| @code {
 | |
|     [Parameter] public required string Name { get; set; }
 | |
|     [Parameter] public required string Link { get; set; }
 | |
| 
 | |
|     [Inject] IStringLocalizer<EmailResource> Localizer { get; set; } = null!;
 | |
| } |