Skip to content

Commit b167fce

Browse files
author
John Campion Jr
committed
chore: release 3.3.0
1 parent bd875c8 commit b167fce

3 files changed

Lines changed: 14 additions & 9 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
11
# Changelog
22

3+
## v3.3
4+
5+
- Added support for mailgun templates - [Original Source/Credit](https://github.com/gps-lasrol/FluentEmail/tree/support-mailgun-templates)
6+
- Fix Azure Email CC and BCC sending to the wrong email addresses - thanks [@megasware128](https://github.com/Megasware128)
7+
38
## v3.2
49

5-
- Addeds FluentEmail.Postmark - [Original Source/Credit](https://github.com/georg-jung/FluentEmail.Postmark)
10+
- Added FluentEmail.Postmark - [Original Source/Credit](https://github.com/georg-jung/FluentEmail.Postmark)
611

712
## v3.1
813

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.2.0</Version>
14+
<Version>3.3.0</Version>
1515

1616

1717
<PublishRepositoryUrl>true</PublishRepositoryUrl>

test/FluentEmail.Core.Tests/MailgunSenderTests.cs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ public class MailgunSenderTests
1717
[SetUp]
1818
public void SetUp()
1919
{
20-
var sender = new MailgunSender("sandboxcf5f41bbf2f84f15a386c60e253b5fe9.mailgun.org", "key-8d32c046d7f14ada8d5ba8253e3e30de");
20+
var sender = new MailgunSender("<name>", "<key>");
2121
Email.DefaultSender = sender;
2222
}
2323

24-
[Test]
24+
[Test, Ignore("Missing credentials")]
2525
public async Task CanSendEmail()
2626
{
2727
var email = Email
@@ -35,7 +35,7 @@ public async Task CanSendEmail()
3535
Assert.IsTrue(response.Successful);
3636
}
3737

38-
[Test]
38+
[Test, Ignore("Missing credentials")]
3939
public async Task GetMessageIdInResponse()
4040
{
4141
var email = Email
@@ -50,7 +50,7 @@ public async Task GetMessageIdInResponse()
5050
Assert.IsNotEmpty(response.MessageId);
5151
}
5252

53-
[Test]
53+
[Test, Ignore("Missing credentials")]
5454
public async Task CanSendEmailWithTag()
5555
{
5656
var email = Email
@@ -65,7 +65,7 @@ public async Task CanSendEmailWithTag()
6565
Assert.IsTrue(response.Successful);
6666
}
6767

68-
[Test]
68+
[Test, Ignore("Missing credentials")]
6969
public async Task CanSendEmailWithVariables()
7070
{
7171
var email = Email
@@ -80,7 +80,7 @@ public async Task CanSendEmailWithVariables()
8080
Assert.IsTrue(response.Successful);
8181
}
8282

83-
[Test]
83+
[Test, Ignore("Missing credentials")]
8484
public async Task CanSendEmailWithAttachments()
8585
{
8686
var stream = new MemoryStream();
@@ -108,7 +108,7 @@ public async Task CanSendEmailWithAttachments()
108108
Assert.IsTrue(response.Successful);
109109
}
110110

111-
[Test]
111+
[Test, Ignore("Missing credentials")]
112112
public async Task CanSendEmailWithInlineImages()
113113
{
114114
using (var stream = File.OpenRead($"{Path.Combine(Directory.GetCurrentDirectory(), "logotest.png")}"))

0 commit comments

Comments
 (0)