Skip to content

Commit

Permalink
Fix typos and readme shield links
Browse files Browse the repository at this point in the history
  • Loading branch information
Indra van den Berg committed Aug 23, 2023
1 parent e4aeeba commit b0ced3f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

- Fix `SpfLookupException` not being thrown directly.
- Remove unimplemented `CheckSpfRecord`.
- Fix SPF address `Contains` method
- Fix SPF address `Contains` method.

## v1.0.3

Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# BusinessMonitor.MailTools

![Test status](https://github.com/markvantilburg/BusinessMonitor.MailTools/actions/workflows/test.yml/badge.svg)
![Nuget](https://img.shields.io/nuget/v/BusinessMonitor.MailTools)
[![Test status](https://github.com/markvantilburg/BusinessMonitor.MailTools/actions/workflows/test.yml/badge.svg)](https://github.com/markvantilburg/BusinessMonitor.MailTools/actions/workflows/test.yml)
[![Nuget](https://img.shields.io/nuget/v/BusinessMonitor.MailTools)](https://www.nuget.org/packages/BusinessMonitor.MailTools/)

A .NET library providing utilities for mail such as DKIM, SPF and DMARC.

Expand Down Expand Up @@ -44,7 +44,7 @@ Validate the DKIM record on a domain and return the public key:
var check = new DkimCheck(resolver);
var record = check.GetDkimRecord(domain, selector);

Console.WriteLine(record.PublicKey)
Console.WriteLine(record.PublicKey);
```

Parse a DMARC record:
Expand All @@ -65,8 +65,8 @@ foreach (var directive in record.Directives)
{
if (directive.Mechanism == SpfMechanism.Include)
{
Console.WriteLine(directive.Include) // The include domain
Console.WriteLine(directive.Included) // The included SPF record
Console.WriteLine(directive.Include); // The include domain
Console.WriteLine(directive.Included); // The included SPF record
}
}
```

0 comments on commit b0ced3f

Please sign in to comment.