|
1 |
| - |
| 1 | + |
2 | 2 |
|
3 |
| -[](https://travis-ci.org/sendgrid/sendgrid-csharp) |
| 3 | +[](https://travis-ci.org/sendgrid/sendgrid-csharp) |
4 | 4 | [](https://www.nuget.org/packages/SendGrid)
|
5 | 5 | [](https://dx.sendgrid.com/newsletter/csharp)
|
6 | 6 | [](./LICENSE.md)
|
|
12 | 12 | **The default branch name for this repository has been changed to `main` as of 07/27/2020.**
|
13 | 13 |
|
14 | 14 | * Subscribe to email [notifications](https://dx.sendgrid.com/newsletter/csharp) for releases and breaking changes.
|
15 |
| -* Send SMS messages with [Twilio](https://github.com/sendgrid/sendgrid-csharp/blob/master/USE_CASES.md#sms). |
| 15 | +* Send SMS messages with [Twilio](USE_CASES.md#sms). |
16 | 16 |
|
17 | 17 | # Overview
|
18 | 18 |
|
19 | 19 | **This library allows you to quickly and easily use the Twilio SendGrid Web API v3 via C# with .NET.**
|
20 | 20 |
|
21 | 21 | Version 9.X.X+ of this library provides full support for all Twilio SendGrid [Web API v3](https://sendgrid.com/docs/API_Reference/api_v3.html) endpoints, including the new [v3 /mail/send](https://sendgrid.com/blog/introducing-v3mailsend-sendgrids-new-mail-endpoint).
|
22 | 22 |
|
23 |
| -We want this library to be community driven, and Twilio SendGrid led. We need your help to realize this goal. To help make sure we are building the right things in the right order, we ask that you create [issues](https://github.com/sendgrid/sendgrid-csharp/issues) and [pull requests](https://github.com/sendgrid/sendgrid-csharp/blob/master/CONTRIBUTING.md) or simply upvote or comment on existing issues or pull requests. |
| 23 | +We want this library to be community driven, and Twilio SendGrid led. We need your help to realize this goal. To help make sure we are building the right things in the right order, we ask that you create [issues](https://github.com/sendgrid/sendgrid-csharp/issues) and [pull requests](CONTRIBUTING.md) or simply upvote or comment on existing issues or pull requests. |
24 | 24 |
|
25 |
| -For updates to this library, see our [CHANGELOG](https://github.com/sendgrid/sendgrid-csharp/blob/master/CHANGELOG.md) and [releases](https://github.com/sendgrid/sendgrid-csharp/releases). |
| 25 | +For updates to this library, see our [CHANGELOG](CHANGELOG.md) and [releases](https://github.com/sendgrid/sendgrid-csharp/releases). |
26 | 26 |
|
27 | 27 | Subscribe to email [release notifications](https://dx.sendgrid.com/newsletter/csharp) to receive emails about releases and breaking changes.
|
28 | 28 |
|
@@ -104,11 +104,11 @@ dotnet add package SendGrid.Extensions.DependencyInjection
|
104 | 104 | ```
|
105 | 105 |
|
106 | 106 | Once you have the Twilio SendGrid library installed, you can include calls to it in your code.
|
107 |
| -For sample implementations, see the [.NET Core Example](https://github.com/sendgrid/sendgrid-csharp/tree/master/ExampleCoreProject) and the [.NET 4.5.2 Example](https://github.com/sendgrid/sendgrid-csharp/tree/master/ExampleNet45Project) folders. |
| 107 | +For sample implementations, see the [.NET Core Example](ExampleCoreProject) and the [.NET 4.5.2 Example](ExampleNet45Project) folders. |
108 | 108 |
|
109 | 109 | ## Dependencies
|
110 | 110 |
|
111 |
| -Please see the [.csproj file](https://github.com/sendgrid/sendgrid-csharp/blob/master/src/SendGrid/SendGrid.csproj). |
| 111 | +Please see the [.csproj file](src/SendGrid/SendGrid.csproj). |
112 | 112 |
|
113 | 113 | # Quick Start
|
114 | 114 |
|
@@ -169,7 +169,7 @@ class Program
|
169 | 169 | }
|
170 | 170 | ```
|
171 | 171 |
|
172 |
| -You can find an example of all the email features [here](https://github.com/sendgrid/sendgrid-csharp/blob/master/tests/SendGrid.Tests/Integration.cs#L79). |
| 172 | +You can find an example of all the email features [here](tests/SendGrid.Tests/Integration.cs#L79). |
173 | 173 |
|
174 | 174 | <a name="v3"></a>
|
175 | 175 | ## General v3 Web API Usage
|
@@ -244,34 +244,34 @@ class Program
|
244 | 244 | # Usage
|
245 | 245 |
|
246 | 246 | - [Twilio SendGrid Docs](https://sendgrid.com/docs/API_Reference/api_v3.html)
|
247 |
| -- [Library Usage Docs](https://github.com/sendgrid/sendgrid-csharp/tree/master/USAGE.md) |
248 |
| -- [Example Code - .NET Core](https://github.com/sendgrid/sendgrid-csharp/tree/master/ExampleCoreProject) |
249 |
| -- [Example Code - .NET 4.5.2+](https://github.com/sendgrid/sendgrid-csharp/tree/master/ExampleNet45Project) |
| 247 | +- [Library Usage Docs](USAGE.md) |
| 248 | +- [Example Code - .NET Core](ExampleCoreProject) |
| 249 | +- [Example Code - .NET 4.5.2+](ExampleNet45Project) |
250 | 250 | - [How-to: Migration from v2 to v3](https://sendgrid.com/docs/Classroom/Send/v3_Mail_Send/how_to_migrate_from_v2_to_v3_mail_send.html)
|
251 |
| -- [v3 Web API Mail Send Helper](https://github.com/sendgrid/sendgrid-csharp/tree/master/src/SendGrid/Helpers/Mail) |
| 251 | +- [v3 Web API Mail Send Helper](src/SendGrid/Helpers/Mail) |
252 | 252 |
|
253 | 253 | # Use Cases
|
254 | 254 |
|
255 |
| -Here are some [examples of common API use cases](https://github.com/sendgrid/sendgrid-csharp/blob/master/USE_CASES.md), such as how to send an email with a transactional template. |
| 255 | +Here are some [examples of common API use cases](USE_CASES.md), such as how to send an email with a transactional template. |
256 | 256 |
|
257 | 257 | # Roadmap
|
258 | 258 |
|
259 | 259 | If you are interested in the future direction of this project, please take a look at our open [issues](https://github.com/sendgrid/sendgrid-csharp/issues) and [pull requests](https://github.com/sendgrid/sendgrid-csharp/pulls). We would love to hear your feedback!
|
260 | 260 |
|
261 | 261 | # How to Contribute
|
262 | 262 |
|
263 |
| -We encourage contribution to our library (you might even score some nifty swag), please see our [CONTRIBUTING](https://github.com/sendgrid/sendgrid-csharp/tree/master/CONTRIBUTING.md) guide for details. |
| 263 | +We encourage contribution to our library (you might even score some nifty swag), please see our [CONTRIBUTING](CONTRIBUTING.md) guide for details. |
264 | 264 |
|
265 | 265 | Quick links:
|
266 | 266 |
|
267 |
| -- [Feature Request](https://github.com/sendgrid/sendgrid-csharp/tree/master/CONTRIBUTING.md#feature-request) |
268 |
| -- [Bug Reports](https://github.com/sendgrid/sendgrid-csharp/tree/master/CONTRIBUTING.md#submit-a-bug-report) |
269 |
| -- [Improvements to the Codebase](https://github.com/sendgrid/sendgrid-csharp/tree/master/CONTRIBUTING.md#improvements-to-the-codebase) |
270 |
| -- [Review Pull Requests](https://github.com/sendgrid/sendgrid-csharp/tree/master/CONTRIBUTING.md#code-reviews) |
| 267 | +- [Feature Request](CONTRIBUTING.md#feature-request) |
| 268 | +- [Bug Reports](CONTRIBUTING.md#submit-a-bug-report) |
| 269 | +- [Improvements to the Codebase](CONTRIBUTING.md#improvements-to-the-codebase) |
| 270 | +- [Review Pull Requests](CONTRIBUTING.md#code-reviews) |
271 | 271 |
|
272 | 272 | # Troubleshooting
|
273 | 273 |
|
274 |
| -Please see our [troubleshooting guide](https://github.com/sendgrid/sendgrid-csharp/blob/master/TROUBLESHOOTING.md) for common library issues. |
| 274 | +Please see our [troubleshooting guide](TROUBLESHOOTING.md) for common library issues. |
275 | 275 |
|
276 | 276 | # About
|
277 | 277 |
|
|
0 commit comments