Skip to content

Commit 39d2652

Browse files
author
John Campion
committed
chore: release v3.4.0
1 parent 11632fb commit 39d2652

3 files changed

Lines changed: 9 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## v3.4.0
4+
5+
- Added MailPace sender - thanks [@maartenba](https://github.com/maartenba)
6+
37
## v3.3.1
48

59
- Added MailKit builder to use injected config to allow it to come from .NET config system

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
![alt text](https://github.com/lukencode/FluentEmail/raw/master/assets/fluentemail_logo_64x64.png 'FluentEmail')
1+
![alt text](https://github.com/lukencode/FluentEmail/raw/master/assets/fluentemail_logo_64x64.png "FluentEmail")
22

33
# FluentEmail - All in one email sender for .NET and .NET Core
44

@@ -26,7 +26,8 @@ Original blog post here for a detailed guide [A complete guide to send email in
2626

2727
### Mail Provider Integrations
2828

29-
- [FluentEmail.Postmark](src/Senders/FluentEmail.Postmark) - Send emails via Postmark's REST API. [Original Source/Credit](https://github.com/georg-jung/FluentEmail.Postmark)
29+
- [FluentEmail.Azure](src/Senders/FluentEmail.Azure.Email) - Send emails via Azure Email Communication Services API
30+
- [FluentEmail.Postmark](src/Senders/FluentEmail.Postmark) - Send emails via Postmark's REST API. [Original Source/Credit](https://github.com/georg-jung/FluentEmail.Postmark)
3031
- [FluentEmail.Mailgun](src/Senders/FluentEmail.Mailgun) - Send emails via MailGun's REST API.
3132
- [FluentEmail.SendGrid](src/Senders/FluentEmail.SendGrid) - Send email via the SendGrid API.
3233
- [FluentEmail.Mailtrap](src/Senders/FluentEmail.Mailtrap) - Send emails to Mailtrap. Uses [FluentEmail.Smtp](src/Senders/FluentEmail.Smtp) for delivery.
@@ -167,4 +168,4 @@ var email = new Email("bob@hotmail.com")
167168
.UsingTemplateFromEmbedded("Example.Project.Namespace.template-name.cshtml",
168169
new { Name = "Bob" },
169170
TypeFromYourEmbeddedAssembly.GetType().GetTypeInfo().Assembly);
170-
```
171+
```

src/Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
1212

1313
<PackageLicenseExpression>MIT</PackageLicenseExpression>
14-
<Version>3.3.1</Version>
14+
<Version>3.4.0</Version>
1515

1616

1717
<PublishRepositoryUrl>true</PublishRepositoryUrl>

0 commit comments

Comments
 (0)