Skip to content

Commit f4092b7

Browse files
Version Bump v9.8.0: #508 Single email to multiple recipients - Toggle display of recipients
1 parent c3bc286 commit f4092b7

File tree

5 files changed

+15
-7
lines changed

5 files changed

+15
-7
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
# Change Log
22
All notable changes to this project will be documented in this file.
33

4+
## [9.8.0] - 2017-08-15
5+
## Added
6+
- Single email to multiple recipients - Toggle display of recipients #508
7+
- The method `CreateSingleEmailToMultipleRecipients` now has an additional optional paramter to control whether the email recipients can see each others email addresses. Please see [USE_CASES.md](https://github.com/sendgrid/sendgrid-csharp/blob/master/USE_CASES.md#singleemailmultiplerecipients) for details.
8+
- Thanks to [Niladri Dutta](Niladri24dutta) for the PR!
9+
410
## [9.7.0] - 2017-08-03
511
## Added
612
- Reverted to version 9.5.2, per the conversation here: #501

USE_CASES.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -343,12 +343,14 @@ namespace Example
343343
var subject = "Sending with SendGrid is Fun";
344344
var plainTextContent = "and easy to do anywhere, even with C#";
345345
var htmlContent = "<strong>and easy to do anywhere, even with C#</strong>";
346+
var showAllRecipients = false; // Set to true if you want the recipients to see each others email addresses
346347
347348
var msg = MailHelper.CreateSingleEmailToMultipleRecipients(from,
348349
tos,
349350
subject,
350351
plainTextContent,
351-
htmlContent
352+
htmlContent,
353+
showAllRecipients
352354
);
353355
var response = await client.SendEmailAsync(msg);
354356
}

nuspec/Sendgrid.9.7.0.nuspec renamed to nuspec/Sendgrid.9.8.0.nuspec

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
33
<metadata>
44
<id>Sendgrid</id>
5-
<version>9.7.0</version>
5+
<version>9.8.0</version>
66
<title>SendGrid</title>
77
<authors>Elmer Thomas,SendGrid DX Team</authors>
88
<licenseUrl>https://github.com/sendgrid/sendgrid-csharp/blob/master/MIT.LICENSE</licenseUrl>
@@ -12,9 +12,9 @@
1212
<description>C# client library and examples for using SendGrid API's to send mail and access Web API v3 endpoints with .NET Standard 1.3 and .NET Core support. Github repo located at : https://github.com/sendgrid/sendgrid-csharp</description>
1313
<summary>C# client library and examples for using SendGrid API's to send mail and access Web API v3 endpoints with .NET Standard 1.3 and .NET Core support.</summary>
1414
<releaseNotes>## Added
15-
- Reverted to version 9.5.2, per the conversation here: #501
16-
- Polly (which implemented Transient Fault Handling) was removed in favor of a dependency free solution.
17-
- Transient Fault Handling with Polly still exists in version 9.6.1, if needed</releaseNotes>
15+
- Single email to multiple recipients - Toggle display of recipients #508
16+
- The method `CreateSingleEmailToMultipleRecipients` now has an additional optional paramter to control whether the email recipients can see each others email addresses. Please see [USE_CASES.md](https://github.com/sendgrid/sendgrid-csharp/blob/master/USE_CASES.md#singleemailmultiplerecipients) for details.
17+
- Thanks to [Niladri Dutta](Niladri24dutta) for the PR!</releaseNotes>
1818
<copyright>SendGrid, Inc. 2017</copyright>
1919
<tags>SendGrid Email Mail Microsoft Azure Transactional .NET Core</tags>
2020
<dependencies>

src/SendGrid/Properties/AssemblyInfo.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@
2222
// The following GUID is for the ID of the typelib if this project is exposed to COM
2323
[assembly: Guid("377c20e4-2297-488f-933b-fb635c56d8fc")]
2424

25-
[assembly: AssemblyInformationalVersion("9.7.0")]
25+
[assembly: AssemblyInformationalVersion("9.8.0")]

src/SendGrid/SendGrid.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<VersionPrefix>9.7.0</VersionPrefix>
4+
<VersionPrefix>9.8.0</VersionPrefix>
55
<TargetFrameworks>netstandard1.3;net452</TargetFrameworks>
66
<PlatformTarget>anycpu</PlatformTarget>
77
<GenerateDocumentationFile>true</GenerateDocumentationFile>

0 commit comments

Comments
 (0)