Skip to content

Releases: sendgrid/sendgrid-csharp

9.12.3

17 Jan 19:37
Compare
Choose a tag to compare

Release Notes

Library - Chore

9.12.2

17 Jan 18:03
Compare
Choose a tag to compare

Release Notes

Library - Chore

9.12.1

16 Jan 19:34
Compare
Choose a tag to compare

Release Notes

Library - Chore

Library - Docs

  • PR #764: Update documentation for retrieving all templates. Thanks to @tony-ho!

v9.12.0

15 Aug 19:19
Compare
Choose a tag to compare

Added

  • PR #892 Replace nuspec and AssemblyInfo with csproj. Big thanks to Jonas Nyrup for the PR!
  • PR #876 Add EmailAddress attribute. Big thanks to Jonathan for the PR!
  • PR #839 Refactored SendGridClient to support inject external managed HttpClient. Big thanks to Charley Wu for the PR!

v9.11.0

18 Apr 16:22
Compare
Choose a tag to compare

Added

  • PR #877 Twilio SMS example and branding update.
  • PR #790 Change the environment variable placeholders to be consistent amongst all example projects. Big thanks to Ross Macey for the PR!
  • PR #783 Update documentation with new Git workflow. Big thanks to Tony Ho for the PR!
  • PR #782 Update contribution to use Gitflow workflow. Big thanks to Anatoly for the PR!
  • PR #814 Modification in Prerequisites for installation. Big thanks to Rishabh for the PR!
  • PR #817 Added Announcement. Big thanks to Kris Choi for the PR!

Fixed

v9.10.0

12 Sep 17:52
Compare
Choose a tag to compare

Added

Fixed

v9.9.0

22 Aug 19:17
Compare
Choose a tag to compare

Added

  • #509 Transient Fault Handling (dependency free)
  • Implements retry behaviour for transient faults when using HttpClient to send the request.
  • Please see #509 and USE_CASES.md for details.
  • Thanks to Dylan Morley for the PR!

v9.8.0

15 Aug 20:48
Compare
Choose a tag to compare

Added

  • PR #508: Single email to multiple recipients - Toggle display of recipients
  • 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 for details.
  • Thanks to Niladri Dutta for the PR!

v9.6.1

03 Aug 22:47
Compare
Choose a tag to compare

Fixed

  • Fix for issue #501: Could not load file or assembly 'Polly, Version=5.2.0.0, Culture=neutral, PublicKeyToken=null'
  • The dependency for Polly has been corrected

v9.6.0

02 Aug 22:25
Compare
Choose a tag to compare

Added

This PR implements retry behaviour for transient faults when using HttpClient to send the request.

  • For full backwards compatibility, default behaviour of retry logic is off. Consumer of the library must explicitly enable this using the ReliabilitySettings
  • Retry logic implemented as a delegating handler in the HttpClient handlers pipeline
  • New object ReliabilitySettings defines retry count and retry interval. Setting retry count > 0 enables the behaviour.
  • New object SendGridClientOptions defines the settings to use with SendGridClient, and new ctor allows this object,

Here is an example of usage.