Skip to content

Commit

Permalink
Version Bump v9.8.0: #508 Single email to multiple recipients - Toggl…
Browse files Browse the repository at this point in the history
…e display of recipients
  • Loading branch information
thinkingserious committed Aug 15, 2017
1 parent c3bc286 commit f4092b7
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 7 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# Change Log
All notable changes to this project will be documented in this file.

## [9.8.0] - 2017-08-15
## Added
- Single email to multiple recipients - Toggle display of recipients #508
- 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.
- Thanks to [Niladri Dutta](Niladri24dutta) for the PR!

## [9.7.0] - 2017-08-03
## Added
- Reverted to version 9.5.2, per the conversation here: #501
Expand Down
4 changes: 3 additions & 1 deletion USE_CASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -343,12 +343,14 @@ namespace Example
var subject = "Sending with SendGrid is Fun";
var plainTextContent = "and easy to do anywhere, even with C#";
var htmlContent = "<strong>and easy to do anywhere, even with C#</strong>";
var showAllRecipients = false; // Set to true if you want the recipients to see each others email addresses
var msg = MailHelper.CreateSingleEmailToMultipleRecipients(from,
tos,
subject,
plainTextContent,
htmlContent
htmlContent,
showAllRecipients
);
var response = await client.SendEmailAsync(msg);
}
Expand Down
8 changes: 4 additions & 4 deletions nuspec/Sendgrid.9.7.0.nuspec → nuspec/Sendgrid.9.8.0.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
<metadata>
<id>Sendgrid</id>
<version>9.7.0</version>
<version>9.8.0</version>
<title>SendGrid</title>
<authors>Elmer Thomas,SendGrid DX Team</authors>
<licenseUrl>https://github.com/sendgrid/sendgrid-csharp/blob/master/MIT.LICENSE</licenseUrl>
Expand All @@ -12,9 +12,9 @@
<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>
<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>
<releaseNotes>## Added
- Reverted to version 9.5.2, per the conversation here: #501
- Polly (which implemented Transient Fault Handling) was removed in favor of a dependency free solution.
- Transient Fault Handling with Polly still exists in version 9.6.1, if needed</releaseNotes>
- Single email to multiple recipients - Toggle display of recipients #508
- 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.
- Thanks to [Niladri Dutta](Niladri24dutta) for the PR!</releaseNotes>
<copyright>SendGrid, Inc. 2017</copyright>
<tags>SendGrid Email Mail Microsoft Azure Transactional .NET Core</tags>
<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion src/SendGrid/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@
// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("377c20e4-2297-488f-933b-fb635c56d8fc")]

[assembly: AssemblyInformationalVersion("9.7.0")]
[assembly: AssemblyInformationalVersion("9.8.0")]
2 changes: 1 addition & 1 deletion src/SendGrid/SendGrid.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<VersionPrefix>9.7.0</VersionPrefix>
<VersionPrefix>9.8.0</VersionPrefix>
<TargetFrameworks>netstandard1.3;net452</TargetFrameworks>
<PlatformTarget>anycpu</PlatformTarget>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
Expand Down

0 comments on commit f4092b7

Please sign in to comment.