Skip to content

Commit f0458e6

Browse files
authored
Update README.md
1 parent a3934a8 commit f0458e6

File tree

1 file changed

+2
-2
lines changed
  • src/EmailDeliveryProviders/Email.NET.Mailgun

1 file changed

+2
-2
lines changed

src/EmailDeliveryProviders/Email.NET.Mailgun/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ in order to use the Mailgun EDP, you call the `UseMailgun()` method and pass the
1414
```csharp
1515
// register Mailgun EDP with EmailServiceFactory
1616
EmailServiceFactory.Instance
17-
.UseMailgun(apiKey: "your-sendgrid-api-key", domain: "your-mailgun-domain")
17+
.UseMailgun(apiKey: "your-mailgun-api-key", domain: "your-mailgun-domain")
1818
.Create();
1919

2020
// register Mailgun EDP with Dependency Injection
2121
services.AddEmailNet(MailgunEmailDeliveryProvider.Name)
22-
.UseMailgun(apiKey: "your-sendgrid-api-key", domain: "your-mailgun-domain");
22+
.UseMailgun(apiKey: "your-mailgun-api-key", domain: "your-mailgun-domain");
2323
```
2424

2525
##### Custom EDP data

0 commit comments

Comments
 (0)