0
balessi75 created
Abp Commercial / 5.1.3/ EF / Blazor Server / Non-tiered
Hi - We updated the default text for the email confirmation text template with the word "test"...
...however, when we send an email during registration of a new user, the Abp default text gets emailed not our saved text of "test". Is there another configuration step to override the default email confirmation text? It is not clear from the documentation.
Markdown supported.
Copy, paste, or drag & drop images and files (max 100 MB per file, 100 MB total per post)
1 Answer(s)
-
0
hi
You can set the Layout to null of the
AccountEmailTemplates.EmailConfirmationLinkpublic class DemoTemplateDefinitionProvider : TemplateDefinitionProvider { public override void Define(ITemplateDefinitionContext context) { context.GetOrNull(AccountEmailTemplates.EmailConfirmationLink).Layout = null; } }Markdown supported.Copy, paste, or drag & drop images and files (max 100 MB per file, 100 MB total per post)