Skip to content

Commit 92c43e7

Browse files
committed
Updates
1 parent 28f67fb commit 92c43e7

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.openpublishing.redirection.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1329,7 +1329,7 @@
13291329
"redirect_document_id": false
13301330
},
13311331
{
1332-
"source_path": "blazor/security/server/account-confirmation-and-password-recovery.md",
1332+
"source_path": "aspnetcore/blazor/security/server/account-confirmation-and-password-recovery.md",
13331333
"redirect_url": "/aspnet/core/blazor/security/account-confirmation-and-password-recovery",
13341334
"redirect_document_id": false
13351335
}

aspnetcore/blazor/security/account-confirmation-and-password-recovery.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ The following example is based on Mailchimp's Transactional API using [Mandrill.
6969

7070
Add the [Mandrill.net](https://www.nuget.org/packages/Mandrill.net) NuGet package to the project.
7171

72-
Add the following `EmailSender` class to implement <xref:Microsoft.AspNetCore.Identity.IEmailSender>.
72+
Add the following `EmailSender` class to implement <xref:Microsoft.AspNetCore.Identity.IEmailSender%601>.
7373

7474
`Components/Account/EmailSender.cs`:
7575

aspnetcore/blazor/security/webassembly/standalone-with-identity/account-confirmation-and-password-recovery.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ The following example is based on Mailchimp's Transactional API using [Mandrill.
7474

7575
Add the [Mandrill.net](https://www.nuget.org/packages/Mandrill.net) NuGet package to the backend server project.
7676

77-
Add the following `EmailSender` class to implement <xref:Microsoft.AspNetCore.Identity.IEmailSender>. In the following example, `AppUser` is a <xref:Microsoft.AspNetCore.Identity.IdentityUser>.
77+
Add the following `EmailSender` class to implement <xref:Microsoft.AspNetCore.Identity.IEmailSender%601>. In the following example, `AppUser` is a <xref:Microsoft.AspNetCore.Identity.IdentityUser>.
7878

7979
`EmailSender.cs`:
8080

@@ -141,7 +141,7 @@ In the backend server's `Program` file, require a confirmed email to register an
141141
+ builder.Services.AddIdentityCore<AppUser>(o => o.SignIn.RequireConfirmedEmail = true)
142142
```
143143

144-
Add the following service registration to set the email sender implementation to `EmailSender` for <xref:Microsoft.AspNetCore.Identity.IEmailSender>:
144+
Add the following service registration to set the email sender implementation to `EmailSender` for <xref:Microsoft.AspNetCore.Identity.IEmailSender%601>:
145145

146146
```csharp
147147
builder.Services.AddTransient<IEmailSender<AppUser>, EmailSender>();

0 commit comments

Comments
 (0)