├── .editorconfig ├── .env_sample ├── .github └── workflows │ ├── pr-lint.yml │ └── test-and-deploy.yml ├── .gitignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── ExampleCoreProject ├── ExampleCoreProject.csproj └── Program.cs ├── ExampleNet45ASPNetProject ├── README.md ├── SendGrid.ASPSamples.sln ├── SendGrid.ASPSamples │ ├── App_Start │ │ ├── BundleConfig.cs │ │ ├── FilterConfig.cs │ │ ├── IdentityConfig.cs │ │ ├── RouteConfig.cs │ │ └── Startup.Auth.cs │ ├── Content │ │ ├── Site.css │ │ ├── bootstrap.css │ │ └── bootstrap.min.css │ ├── Controllers │ │ └── EmailController.cs │ ├── Global.asax │ ├── Global.asax.cs │ ├── Models │ │ ├── EmailContract.cs │ │ ├── EmailServiceException.cs │ │ └── IdentityModels.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Scripts │ │ ├── _references.js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ ├── jquery-1.10.2.intellisense.js │ │ ├── jquery-1.10.2.js │ │ ├── jquery-1.10.2.min.js │ │ ├── jquery-1.10.2.min.map │ │ ├── jquery.validate-vsdoc.js │ │ ├── jquery.validate.js │ │ ├── jquery.validate.min.js │ │ ├── jquery.validate.unobtrusive.js │ │ ├── jquery.validate.unobtrusive.min.js │ │ ├── modernizr-2.6.2.js │ │ ├── respond.js │ │ └── respond.min.js │ ├── SendGrid.ASPSamples.csproj │ ├── Service │ │ └── SendGridEmailService.cs │ ├── Startup.cs │ ├── Views │ │ ├── Email │ │ │ └── Send.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ ├── Lockout.cshtml │ │ │ ├── _Layout.cshtml │ │ │ └── _LoginPartial.cshtml │ │ ├── Web.config │ │ └── _ViewStart.cshtml │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ ├── favicon.ico │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ └── packages.config └── SendGrid.ASPWebFormsSamples │ ├── ApplicationInsights.config │ ├── Content │ └── Site.css │ ├── Default.aspx │ ├── Default.aspx.cs │ ├── Default.aspx.designer.cs │ ├── Global.asax │ ├── Global.asax.cs │ ├── Models │ └── EmailMessageInfo.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── SendGrid.ASPWebFormsSamples.csproj │ ├── Services │ └── SendGridService.cs │ ├── Site.Master │ ├── Site.Master.cs │ ├── Site.Master.designer.cs │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ ├── favicon.ico │ └── packages.config ├── ExampleNet45Project ├── ExampleNet45.csproj └── Program.cs ├── FIRST_TIMERS.md ├── LICENSE ├── Makefile ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── SendGrid.sln ├── TROUBLESHOOTING.md ├── USAGE.md ├── USE_CASES.md ├── examples ├── accesssettings │ └── accesssettings.cs ├── alerts │ └── alerts.cs ├── apikeys │ └── apikeys.cs ├── asm │ └── asm.cs ├── browsers │ └── browsers.cs ├── campaigns │ └── campaigns.cs ├── categories │ └── categories.cs ├── clients │ ├── clientOptions.cs │ └── clients.cs ├── contactdb │ └── contactdb.cs ├── devices │ └── devices.cs ├── eventwebhook │ ├── RequestValidator.cs │ └── consumer │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── SendGridEventWebhookConsumer.sln │ │ ├── Src │ │ └── EventWebhook │ │ │ ├── Controllers │ │ │ └── EventWebhookController.cs │ │ │ ├── Converters │ │ │ ├── CategoryConverter.cs │ │ │ └── UriConverter.cs │ │ │ ├── EventWebhook.csproj │ │ │ ├── Models │ │ │ ├── BounceEvent.cs │ │ │ ├── BounceEventType.cs │ │ │ ├── Category.cs │ │ │ ├── ClickEvent.cs │ │ │ ├── DeferredEvent.cs │ │ │ ├── DeliveredEvent.cs │ │ │ ├── DroppedEvent.cs │ │ │ ├── Event.cs │ │ │ ├── EventType.cs │ │ │ ├── GroupResubscribeEvent.cs │ │ │ ├── GroupUnsubscribeEvent.cs │ │ │ ├── OpenEvent.cs │ │ │ ├── Pool.cs │ │ │ ├── ProcessedEvent.cs │ │ │ ├── SpamReportEvent.cs │ │ │ └── UnsubscribeEvent.cs │ │ │ ├── Parser │ │ │ ├── EventConverter.cs │ │ │ └── EventParser.cs │ │ │ ├── Program.cs │ │ │ ├── Startup.cs │ │ │ ├── Views │ │ │ └── EventWebhook │ │ │ │ └── Index.cshtml │ │ │ ├── appsettings.Development.json │ │ │ └── appsettings.json │ │ └── Tests │ │ └── EventWebhook.Tests │ │ ├── EventTests.cs │ │ ├── EventWebhook.Tests.csproj │ │ └── TestData │ │ └── events.json ├── geo │ └── geo.cs ├── inbound-webhook-handler │ ├── .dockerignore │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── Dockerfile │ ├── README.md │ ├── SendGridInbound.sln │ ├── Src │ │ └── Inbound │ │ │ ├── Controllers │ │ │ └── InboundController.cs │ │ │ ├── Inbound.csproj │ │ │ ├── Models │ │ │ ├── InboundEmail.cs │ │ │ ├── InboundEmailAddress.cs │ │ │ ├── InboundEmailAttachment.cs │ │ │ └── InboundEmailEnvelope.cs │ │ │ ├── Parsers │ │ │ └── InboundWebhookParser.cs │ │ │ ├── Program.cs │ │ │ ├── Startup.cs │ │ │ ├── Util │ │ │ ├── Extensions.cs │ │ │ └── InboundWebhookParserHelper.cs │ │ │ ├── Views │ │ │ └── Inbound │ │ │ │ └── Index.cshtml │ │ │ ├── appsettings.Development.json │ │ │ └── appsettings.json │ └── Tests │ │ └── Inbound.Tests │ │ ├── Inbound.Tests.csproj │ │ ├── IntegrationTests │ │ └── InboundEndpointsTests.cs │ │ ├── Parsers │ │ └── InboundWebhookParserTests.cs │ │ └── sample_data │ │ ├── default_data.txt │ │ ├── raw_data_with_attachments.txt │ │ └── raw_email_with_attachments.txt ├── ips │ └── ips.cs ├── mail │ └── mail.cs ├── mailboxproviders │ └── mailboxproviders.cs ├── mailsettings │ └── mailsettings.cs ├── partnersettings │ └── partnersettings.cs ├── scopes │ └── scopes.cs ├── senderauthentication │ └── senderauthentication.cs ├── senders │ └── senders.cs ├── stats │ └── stats.cs ├── subusers │ └── subusers.cs ├── suppression │ └── suppression.cs ├── templates │ └── templates.cs ├── trackingsettings │ └── trackingsettings.cs └── user │ └── user.cs ├── src ├── SendGrid.Extensions.DependencyInjection │ ├── InjectableSendGridClient.cs │ ├── SendGrid.Extensions.DependencyInjection.csproj │ └── ServiceCollectionExtensions.cs └── SendGrid │ ├── BaseClient.cs │ ├── BaseClientOptions.cs │ ├── Helpers │ ├── Errors │ │ ├── ErrorHandler.cs │ │ └── Model │ │ │ ├── BadRequestException.cs │ │ │ ├── ForbiddenException.cs │ │ │ ├── MethodNotAllowedException.cs │ │ │ ├── NotFoundException.cs │ │ │ ├── PayloadTooLargeException.cs │ │ │ ├── RequestErrorException.cs │ │ │ ├── SendGridErrorResponse.cs │ │ │ ├── SendGridInternalException.cs │ │ │ ├── ServerUnavailableException.cs │ │ │ ├── ServiceNotAvailableException.cs │ │ │ ├── TooManyRequestsException.cs │ │ │ ├── UnauthorizedException.cs │ │ │ └── UnsupportedMediaTypeException.cs │ ├── EventWebhook │ │ └── RequestValidator.cs │ ├── Mail │ │ ├── MailHelper.cs │ │ ├── Model │ │ │ ├── ASM.cs │ │ │ ├── Attachment.cs │ │ │ ├── BCCSettings.cs │ │ │ ├── BypassBounceManagement.cs │ │ │ ├── BypassListManagement.cs │ │ │ ├── BypassSpamManagement.cs │ │ │ ├── BypassUnsubscribeManagement.cs │ │ │ ├── ClickTracking.cs │ │ │ ├── Content.cs │ │ │ ├── EmailAddress.cs │ │ │ ├── FooterSettings.cs │ │ │ ├── Ganalytics.cs │ │ │ ├── HtmlContent.cs │ │ │ ├── JsonConverters.cs │ │ │ ├── MailSettings.cs │ │ │ ├── OpenTracking.cs │ │ │ ├── Personalization.cs │ │ │ ├── PlainTextContent.cs │ │ │ ├── SandboxMode.cs │ │ │ ├── SpamCheck.cs │ │ │ ├── SubscriptionTracking.cs │ │ │ └── TrackingSettings.cs │ │ ├── README.md │ │ └── SendGridMessage.cs │ ├── Net40 │ │ └── TypeExtensions.cs │ └── TaskUtilities.cs │ ├── ISendGridClient.cs │ ├── MimeType.cs │ ├── Permissions │ ├── ScopeOptions.cs │ ├── SendGridClientExtensions.cs │ ├── SendGridPermission.cs │ ├── SendGridPermissionsBuilder.Scopes.cs │ └── SendGridPermissionsBuilder.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── Reliability │ ├── ReliabilitySettings.cs │ └── RetryDelegatingHandler.cs │ ├── Response.cs │ ├── SendGrid.csproj │ ├── SendGrid.ruleset │ ├── SendGridClient.cs │ ├── SendGridClientOptions.cs │ ├── TwilioEmailClient.cs │ ├── TwilioEmailClientOptions.cs │ └── stylecop.json ├── static └── img │ ├── github-fork.png │ └── github-sign-up.png ├── tests ├── SendGrid.Extensions.DependencyInjection.Tests │ ├── SendGrid.Extensions.DependencyInjection.Tests.csproj │ └── ServiceCollectionExtensionsTests.cs └── SendGrid.Tests │ ├── Helpers │ ├── EventWebhook │ │ └── RequestValidatorTests.cs │ └── Mail │ │ ├── EmailAddressTests.cs │ │ ├── MailHelperTests.cs │ │ ├── NonReadableStream.cs │ │ └── SendGridMessageTests.cs │ ├── Integration.cs │ ├── LicenseTests.cs │ ├── PermissionsBuilderTests.cs │ ├── PreSendEmailValidation │ └── WhenCreatingASendGridMessage.cs │ ├── Reliability │ ├── ReliabilitySettingsTests.cs │ ├── RetryDelegatingHandlerTests.cs │ └── RetryTestBehaviourDelegatingHandler.cs │ ├── RequiredFilesExistTest.cs │ ├── ResponseTests.cs │ ├── SendGrid.Tests.csproj │ ├── SendGridClientExtensionsTests.cs │ ├── SendgridEmailClientTests.cs │ ├── TemplateDataSerialisationTests.cs │ └── TwilioEmailClientTests.cs ├── tools └── sendgrid-csharp.snk └── twilio_sendgrid_logo.png /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env_sample: -------------------------------------------------------------------------------- 1 | SENDGRID_API_KEY='' 2 | -------------------------------------------------------------------------------- /.github/workflows/pr-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/.github/workflows/pr-lint.yml -------------------------------------------------------------------------------- /.github/workflows/test-and-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/.github/workflows/test-and-deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/Dockerfile -------------------------------------------------------------------------------- /ExampleCoreProject/ExampleCoreProject.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/ExampleCoreProject/ExampleCoreProject.csproj -------------------------------------------------------------------------------- /ExampleCoreProject/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/ExampleCoreProject/Program.cs -------------------------------------------------------------------------------- /ExampleNet45ASPNetProject/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/ExampleNet45ASPNetProject/README.md -------------------------------------------------------------------------------- /ExampleNet45ASPNetProject/SendGrid.ASPSamples.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/ExampleNet45ASPNetProject/SendGrid.ASPSamples.sln -------------------------------------------------------------------------------- /ExampleNet45ASPNetProject/SendGrid.ASPSamples/App_Start/BundleConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/ExampleNet45ASPNetProject/SendGrid.ASPSamples/App_Start/BundleConfig.cs -------------------------------------------------------------------------------- /ExampleNet45ASPNetProject/SendGrid.ASPSamples/App_Start/FilterConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/ExampleNet45ASPNetProject/SendGrid.ASPSamples/App_Start/FilterConfig.cs -------------------------------------------------------------------------------- /ExampleNet45ASPNetProject/SendGrid.ASPSamples/App_Start/IdentityConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/ExampleNet45ASPNetProject/SendGrid.ASPSamples/App_Start/IdentityConfig.cs -------------------------------------------------------------------------------- /ExampleNet45ASPNetProject/SendGrid.ASPSamples/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/ExampleNet45ASPNetProject/SendGrid.ASPSamples/App_Start/RouteConfig.cs -------------------------------------------------------------------------------- /ExampleNet45ASPNetProject/SendGrid.ASPSamples/App_Start/Startup.Auth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/ExampleNet45ASPNetProject/SendGrid.ASPSamples/App_Start/Startup.Auth.cs -------------------------------------------------------------------------------- /ExampleNet45ASPNetProject/SendGrid.ASPSamples/Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/ExampleNet45ASPNetProject/SendGrid.ASPSamples/Content/Site.css -------------------------------------------------------------------------------- /ExampleNet45ASPNetProject/SendGrid.ASPSamples/Content/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/ExampleNet45ASPNetProject/SendGrid.ASPSamples/Content/bootstrap.css -------------------------------------------------------------------------------- /ExampleNet45ASPNetProject/SendGrid.ASPSamples/Content/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/ExampleNet45ASPNetProject/SendGrid.ASPSamples/Content/bootstrap.min.css -------------------------------------------------------------------------------- /ExampleNet45ASPNetProject/SendGrid.ASPSamples/Controllers/EmailController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/ExampleNet45ASPNetProject/SendGrid.ASPSamples/Controllers/EmailController.cs -------------------------------------------------------------------------------- /ExampleNet45ASPNetProject/SendGrid.ASPSamples/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/ExampleNet45ASPNetProject/SendGrid.ASPSamples/Global.asax -------------------------------------------------------------------------------- /ExampleNet45ASPNetProject/SendGrid.ASPSamples/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/ExampleNet45ASPNetProject/SendGrid.ASPSamples/Global.asax.cs -------------------------------------------------------------------------------- /ExampleNet45ASPNetProject/SendGrid.ASPSamples/Models/EmailContract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/ExampleNet45ASPNetProject/SendGrid.ASPSamples/Models/EmailContract.cs -------------------------------------------------------------------------------- /ExampleNet45ASPNetProject/SendGrid.ASPSamples/Models/EmailServiceException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/ExampleNet45ASPNetProject/SendGrid.ASPSamples/Models/EmailServiceException.cs -------------------------------------------------------------------------------- /ExampleNet45ASPNetProject/SendGrid.ASPSamples/Models/IdentityModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/ExampleNet45ASPNetProject/SendGrid.ASPSamples/Models/IdentityModels.cs -------------------------------------------------------------------------------- /ExampleNet45ASPNetProject/SendGrid.ASPSamples/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/ExampleNet45ASPNetProject/SendGrid.ASPSamples/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ExampleNet45ASPNetProject/SendGrid.ASPSamples/Scripts/_references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/ExampleNet45ASPNetProject/SendGrid.ASPSamples/Scripts/_references.js -------------------------------------------------------------------------------- /ExampleNet45ASPNetProject/SendGrid.ASPSamples/Scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/ExampleNet45ASPNetProject/SendGrid.ASPSamples/Scripts/bootstrap.js -------------------------------------------------------------------------------- /ExampleNet45ASPNetProject/SendGrid.ASPSamples/Scripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/ExampleNet45ASPNetProject/SendGrid.ASPSamples/Scripts/bootstrap.min.js -------------------------------------------------------------------------------- /ExampleNet45ASPNetProject/SendGrid.ASPSamples/Scripts/jquery-1.10.2.intellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/ExampleNet45ASPNetProject/SendGrid.ASPSamples/Scripts/jquery-1.10.2.intellisense.js -------------------------------------------------------------------------------- /ExampleNet45ASPNetProject/SendGrid.ASPSamples/Scripts/jquery-1.10.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/ExampleNet45ASPNetProject/SendGrid.ASPSamples/Scripts/jquery-1.10.2.js -------------------------------------------------------------------------------- /ExampleNet45ASPNetProject/SendGrid.ASPSamples/Scripts/jquery-1.10.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/ExampleNet45ASPNetProject/SendGrid.ASPSamples/Scripts/jquery-1.10.2.min.js -------------------------------------------------------------------------------- /ExampleNet45ASPNetProject/SendGrid.ASPSamples/Scripts/jquery-1.10.2.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/ExampleNet45ASPNetProject/SendGrid.ASPSamples/Scripts/jquery-1.10.2.min.map -------------------------------------------------------------------------------- /ExampleNet45ASPNetProject/SendGrid.ASPSamples/Scripts/jquery.validate-vsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/ExampleNet45ASPNetProject/SendGrid.ASPSamples/Scripts/jquery.validate-vsdoc.js -------------------------------------------------------------------------------- /ExampleNet45ASPNetProject/SendGrid.ASPSamples/Scripts/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/ExampleNet45ASPNetProject/SendGrid.ASPSamples/Scripts/jquery.validate.js -------------------------------------------------------------------------------- /ExampleNet45ASPNetProject/SendGrid.ASPSamples/Scripts/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/ExampleNet45ASPNetProject/SendGrid.ASPSamples/Scripts/jquery.validate.min.js -------------------------------------------------------------------------------- /ExampleNet45ASPNetProject/SendGrid.ASPSamples/Scripts/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/ExampleNet45ASPNetProject/SendGrid.ASPSamples/Scripts/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /ExampleNet45ASPNetProject/SendGrid.ASPSamples/Scripts/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/ExampleNet45ASPNetProject/SendGrid.ASPSamples/Scripts/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /ExampleNet45ASPNetProject/SendGrid.ASPSamples/Scripts/modernizr-2.6.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/ExampleNet45ASPNetProject/SendGrid.ASPSamples/Scripts/modernizr-2.6.2.js -------------------------------------------------------------------------------- /ExampleNet45ASPNetProject/SendGrid.ASPSamples/Scripts/respond.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/ExampleNet45ASPNetProject/SendGrid.ASPSamples/Scripts/respond.js -------------------------------------------------------------------------------- /ExampleNet45ASPNetProject/SendGrid.ASPSamples/Scripts/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/ExampleNet45ASPNetProject/SendGrid.ASPSamples/Scripts/respond.min.js -------------------------------------------------------------------------------- /ExampleNet45ASPNetProject/SendGrid.ASPSamples/SendGrid.ASPSamples.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/ExampleNet45ASPNetProject/SendGrid.ASPSamples/SendGrid.ASPSamples.csproj -------------------------------------------------------------------------------- /ExampleNet45ASPNetProject/SendGrid.ASPSamples/Service/SendGridEmailService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/ExampleNet45ASPNetProject/SendGrid.ASPSamples/Service/SendGridEmailService.cs -------------------------------------------------------------------------------- /ExampleNet45ASPNetProject/SendGrid.ASPSamples/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/ExampleNet45ASPNetProject/SendGrid.ASPSamples/Startup.cs -------------------------------------------------------------------------------- /ExampleNet45ASPNetProject/SendGrid.ASPSamples/Views/Email/Send.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/ExampleNet45ASPNetProject/SendGrid.ASPSamples/Views/Email/Send.cshtml -------------------------------------------------------------------------------- /ExampleNet45ASPNetProject/SendGrid.ASPSamples/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/ExampleNet45ASPNetProject/SendGrid.ASPSamples/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /ExampleNet45ASPNetProject/SendGrid.ASPSamples/Views/Shared/Lockout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/ExampleNet45ASPNetProject/SendGrid.ASPSamples/Views/Shared/Lockout.cshtml -------------------------------------------------------------------------------- /ExampleNet45ASPNetProject/SendGrid.ASPSamples/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/ExampleNet45ASPNetProject/SendGrid.ASPSamples/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /ExampleNet45ASPNetProject/SendGrid.ASPSamples/Views/Shared/_LoginPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/ExampleNet45ASPNetProject/SendGrid.ASPSamples/Views/Shared/_LoginPartial.cshtml -------------------------------------------------------------------------------- /ExampleNet45ASPNetProject/SendGrid.ASPSamples/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/ExampleNet45ASPNetProject/SendGrid.ASPSamples/Views/Web.config -------------------------------------------------------------------------------- /ExampleNet45ASPNetProject/SendGrid.ASPSamples/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/ExampleNet45ASPNetProject/SendGrid.ASPSamples/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /ExampleNet45ASPNetProject/SendGrid.ASPSamples/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/ExampleNet45ASPNetProject/SendGrid.ASPSamples/Web.Debug.config -------------------------------------------------------------------------------- /ExampleNet45ASPNetProject/SendGrid.ASPSamples/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/ExampleNet45ASPNetProject/SendGrid.ASPSamples/Web.Release.config -------------------------------------------------------------------------------- /ExampleNet45ASPNetProject/SendGrid.ASPSamples/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/ExampleNet45ASPNetProject/SendGrid.ASPSamples/Web.config -------------------------------------------------------------------------------- /ExampleNet45ASPNetProject/SendGrid.ASPSamples/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/ExampleNet45ASPNetProject/SendGrid.ASPSamples/favicon.ico -------------------------------------------------------------------------------- /ExampleNet45ASPNetProject/SendGrid.ASPSamples/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/ExampleNet45ASPNetProject/SendGrid.ASPSamples/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /ExampleNet45ASPNetProject/SendGrid.ASPSamples/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/ExampleNet45ASPNetProject/SendGrid.ASPSamples/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /ExampleNet45ASPNetProject/SendGrid.ASPSamples/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/ExampleNet45ASPNetProject/SendGrid.ASPSamples/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /ExampleNet45ASPNetProject/SendGrid.ASPSamples/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/ExampleNet45ASPNetProject/SendGrid.ASPSamples/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /ExampleNet45ASPNetProject/SendGrid.ASPSamples/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/ExampleNet45ASPNetProject/SendGrid.ASPSamples/packages.config -------------------------------------------------------------------------------- /ExampleNet45ASPNetProject/SendGrid.ASPWebFormsSamples/ApplicationInsights.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/ExampleNet45ASPNetProject/SendGrid.ASPWebFormsSamples/ApplicationInsights.config -------------------------------------------------------------------------------- /ExampleNet45ASPNetProject/SendGrid.ASPWebFormsSamples/Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/ExampleNet45ASPNetProject/SendGrid.ASPWebFormsSamples/Content/Site.css -------------------------------------------------------------------------------- /ExampleNet45ASPNetProject/SendGrid.ASPWebFormsSamples/Default.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/ExampleNet45ASPNetProject/SendGrid.ASPWebFormsSamples/Default.aspx -------------------------------------------------------------------------------- /ExampleNet45ASPNetProject/SendGrid.ASPWebFormsSamples/Default.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/ExampleNet45ASPNetProject/SendGrid.ASPWebFormsSamples/Default.aspx.cs -------------------------------------------------------------------------------- /ExampleNet45ASPNetProject/SendGrid.ASPWebFormsSamples/Default.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/ExampleNet45ASPNetProject/SendGrid.ASPWebFormsSamples/Default.aspx.designer.cs -------------------------------------------------------------------------------- /ExampleNet45ASPNetProject/SendGrid.ASPWebFormsSamples/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/ExampleNet45ASPNetProject/SendGrid.ASPWebFormsSamples/Global.asax -------------------------------------------------------------------------------- /ExampleNet45ASPNetProject/SendGrid.ASPWebFormsSamples/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/ExampleNet45ASPNetProject/SendGrid.ASPWebFormsSamples/Global.asax.cs -------------------------------------------------------------------------------- /ExampleNet45ASPNetProject/SendGrid.ASPWebFormsSamples/Models/EmailMessageInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/ExampleNet45ASPNetProject/SendGrid.ASPWebFormsSamples/Models/EmailMessageInfo.cs -------------------------------------------------------------------------------- /ExampleNet45ASPNetProject/SendGrid.ASPWebFormsSamples/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/ExampleNet45ASPNetProject/SendGrid.ASPWebFormsSamples/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ExampleNet45ASPNetProject/SendGrid.ASPWebFormsSamples/SendGrid.ASPWebFormsSamples.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/ExampleNet45ASPNetProject/SendGrid.ASPWebFormsSamples/SendGrid.ASPWebFormsSamples.csproj -------------------------------------------------------------------------------- /ExampleNet45ASPNetProject/SendGrid.ASPWebFormsSamples/Services/SendGridService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/ExampleNet45ASPNetProject/SendGrid.ASPWebFormsSamples/Services/SendGridService.cs -------------------------------------------------------------------------------- /ExampleNet45ASPNetProject/SendGrid.ASPWebFormsSamples/Site.Master: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/ExampleNet45ASPNetProject/SendGrid.ASPWebFormsSamples/Site.Master -------------------------------------------------------------------------------- /ExampleNet45ASPNetProject/SendGrid.ASPWebFormsSamples/Site.Master.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/ExampleNet45ASPNetProject/SendGrid.ASPWebFormsSamples/Site.Master.cs -------------------------------------------------------------------------------- /ExampleNet45ASPNetProject/SendGrid.ASPWebFormsSamples/Site.Master.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/ExampleNet45ASPNetProject/SendGrid.ASPWebFormsSamples/Site.Master.designer.cs -------------------------------------------------------------------------------- /ExampleNet45ASPNetProject/SendGrid.ASPWebFormsSamples/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/ExampleNet45ASPNetProject/SendGrid.ASPWebFormsSamples/Web.Debug.config -------------------------------------------------------------------------------- /ExampleNet45ASPNetProject/SendGrid.ASPWebFormsSamples/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/ExampleNet45ASPNetProject/SendGrid.ASPWebFormsSamples/Web.Release.config -------------------------------------------------------------------------------- /ExampleNet45ASPNetProject/SendGrid.ASPWebFormsSamples/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/ExampleNet45ASPNetProject/SendGrid.ASPWebFormsSamples/Web.config -------------------------------------------------------------------------------- /ExampleNet45ASPNetProject/SendGrid.ASPWebFormsSamples/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/ExampleNet45ASPNetProject/SendGrid.ASPWebFormsSamples/favicon.ico -------------------------------------------------------------------------------- /ExampleNet45ASPNetProject/SendGrid.ASPWebFormsSamples/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/ExampleNet45ASPNetProject/SendGrid.ASPWebFormsSamples/packages.config -------------------------------------------------------------------------------- /ExampleNet45Project/ExampleNet45.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/ExampleNet45Project/ExampleNet45.csproj -------------------------------------------------------------------------------- /ExampleNet45Project/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/ExampleNet45Project/Program.cs -------------------------------------------------------------------------------- /FIRST_TIMERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/FIRST_TIMERS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/Makefile -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/README.md -------------------------------------------------------------------------------- /SendGrid.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/SendGrid.sln -------------------------------------------------------------------------------- /TROUBLESHOOTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/TROUBLESHOOTING.md -------------------------------------------------------------------------------- /USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/USAGE.md -------------------------------------------------------------------------------- /USE_CASES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/USE_CASES.md -------------------------------------------------------------------------------- /examples/accesssettings/accesssettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/examples/accesssettings/accesssettings.cs -------------------------------------------------------------------------------- /examples/alerts/alerts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/examples/alerts/alerts.cs -------------------------------------------------------------------------------- /examples/apikeys/apikeys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/examples/apikeys/apikeys.cs -------------------------------------------------------------------------------- /examples/asm/asm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/examples/asm/asm.cs -------------------------------------------------------------------------------- /examples/browsers/browsers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/examples/browsers/browsers.cs -------------------------------------------------------------------------------- /examples/campaigns/campaigns.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/examples/campaigns/campaigns.cs -------------------------------------------------------------------------------- /examples/categories/categories.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/examples/categories/categories.cs -------------------------------------------------------------------------------- /examples/clients/clientOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/examples/clients/clientOptions.cs -------------------------------------------------------------------------------- /examples/clients/clients.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/examples/clients/clients.cs -------------------------------------------------------------------------------- /examples/contactdb/contactdb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/examples/contactdb/contactdb.cs -------------------------------------------------------------------------------- /examples/devices/devices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/examples/devices/devices.cs -------------------------------------------------------------------------------- /examples/eventwebhook/RequestValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/examples/eventwebhook/RequestValidator.cs -------------------------------------------------------------------------------- /examples/eventwebhook/consumer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/examples/eventwebhook/consumer/Dockerfile -------------------------------------------------------------------------------- /examples/eventwebhook/consumer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/examples/eventwebhook/consumer/README.md -------------------------------------------------------------------------------- /examples/eventwebhook/consumer/SendGridEventWebhookConsumer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/examples/eventwebhook/consumer/SendGridEventWebhookConsumer.sln -------------------------------------------------------------------------------- /examples/eventwebhook/consumer/Src/EventWebhook/Controllers/EventWebhookController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/examples/eventwebhook/consumer/Src/EventWebhook/Controllers/EventWebhookController.cs -------------------------------------------------------------------------------- /examples/eventwebhook/consumer/Src/EventWebhook/Converters/CategoryConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/examples/eventwebhook/consumer/Src/EventWebhook/Converters/CategoryConverter.cs -------------------------------------------------------------------------------- /examples/eventwebhook/consumer/Src/EventWebhook/Converters/UriConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/examples/eventwebhook/consumer/Src/EventWebhook/Converters/UriConverter.cs -------------------------------------------------------------------------------- /examples/eventwebhook/consumer/Src/EventWebhook/EventWebhook.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/examples/eventwebhook/consumer/Src/EventWebhook/EventWebhook.csproj -------------------------------------------------------------------------------- /examples/eventwebhook/consumer/Src/EventWebhook/Models/BounceEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/examples/eventwebhook/consumer/Src/EventWebhook/Models/BounceEvent.cs -------------------------------------------------------------------------------- /examples/eventwebhook/consumer/Src/EventWebhook/Models/BounceEventType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/examples/eventwebhook/consumer/Src/EventWebhook/Models/BounceEventType.cs -------------------------------------------------------------------------------- /examples/eventwebhook/consumer/Src/EventWebhook/Models/Category.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/examples/eventwebhook/consumer/Src/EventWebhook/Models/Category.cs -------------------------------------------------------------------------------- /examples/eventwebhook/consumer/Src/EventWebhook/Models/ClickEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/examples/eventwebhook/consumer/Src/EventWebhook/Models/ClickEvent.cs -------------------------------------------------------------------------------- /examples/eventwebhook/consumer/Src/EventWebhook/Models/DeferredEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/examples/eventwebhook/consumer/Src/EventWebhook/Models/DeferredEvent.cs -------------------------------------------------------------------------------- /examples/eventwebhook/consumer/Src/EventWebhook/Models/DeliveredEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/examples/eventwebhook/consumer/Src/EventWebhook/Models/DeliveredEvent.cs -------------------------------------------------------------------------------- /examples/eventwebhook/consumer/Src/EventWebhook/Models/DroppedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/examples/eventwebhook/consumer/Src/EventWebhook/Models/DroppedEvent.cs -------------------------------------------------------------------------------- /examples/eventwebhook/consumer/Src/EventWebhook/Models/Event.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/examples/eventwebhook/consumer/Src/EventWebhook/Models/Event.cs -------------------------------------------------------------------------------- /examples/eventwebhook/consumer/Src/EventWebhook/Models/EventType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/examples/eventwebhook/consumer/Src/EventWebhook/Models/EventType.cs -------------------------------------------------------------------------------- /examples/eventwebhook/consumer/Src/EventWebhook/Models/GroupResubscribeEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/examples/eventwebhook/consumer/Src/EventWebhook/Models/GroupResubscribeEvent.cs -------------------------------------------------------------------------------- /examples/eventwebhook/consumer/Src/EventWebhook/Models/GroupUnsubscribeEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/examples/eventwebhook/consumer/Src/EventWebhook/Models/GroupUnsubscribeEvent.cs -------------------------------------------------------------------------------- /examples/eventwebhook/consumer/Src/EventWebhook/Models/OpenEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/examples/eventwebhook/consumer/Src/EventWebhook/Models/OpenEvent.cs -------------------------------------------------------------------------------- /examples/eventwebhook/consumer/Src/EventWebhook/Models/Pool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/examples/eventwebhook/consumer/Src/EventWebhook/Models/Pool.cs -------------------------------------------------------------------------------- /examples/eventwebhook/consumer/Src/EventWebhook/Models/ProcessedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/examples/eventwebhook/consumer/Src/EventWebhook/Models/ProcessedEvent.cs -------------------------------------------------------------------------------- /examples/eventwebhook/consumer/Src/EventWebhook/Models/SpamReportEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/examples/eventwebhook/consumer/Src/EventWebhook/Models/SpamReportEvent.cs -------------------------------------------------------------------------------- /examples/eventwebhook/consumer/Src/EventWebhook/Models/UnsubscribeEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/examples/eventwebhook/consumer/Src/EventWebhook/Models/UnsubscribeEvent.cs -------------------------------------------------------------------------------- /examples/eventwebhook/consumer/Src/EventWebhook/Parser/EventConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/examples/eventwebhook/consumer/Src/EventWebhook/Parser/EventConverter.cs -------------------------------------------------------------------------------- /examples/eventwebhook/consumer/Src/EventWebhook/Parser/EventParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/examples/eventwebhook/consumer/Src/EventWebhook/Parser/EventParser.cs -------------------------------------------------------------------------------- /examples/eventwebhook/consumer/Src/EventWebhook/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/examples/eventwebhook/consumer/Src/EventWebhook/Program.cs -------------------------------------------------------------------------------- /examples/eventwebhook/consumer/Src/EventWebhook/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/examples/eventwebhook/consumer/Src/EventWebhook/Startup.cs -------------------------------------------------------------------------------- /examples/eventwebhook/consumer/Src/EventWebhook/Views/EventWebhook/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/examples/eventwebhook/consumer/Src/EventWebhook/Views/EventWebhook/Index.cshtml -------------------------------------------------------------------------------- /examples/eventwebhook/consumer/Src/EventWebhook/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/examples/eventwebhook/consumer/Src/EventWebhook/appsettings.Development.json -------------------------------------------------------------------------------- /examples/eventwebhook/consumer/Src/EventWebhook/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/examples/eventwebhook/consumer/Src/EventWebhook/appsettings.json -------------------------------------------------------------------------------- /examples/eventwebhook/consumer/Tests/EventWebhook.Tests/EventTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/examples/eventwebhook/consumer/Tests/EventWebhook.Tests/EventTests.cs -------------------------------------------------------------------------------- /examples/eventwebhook/consumer/Tests/EventWebhook.Tests/EventWebhook.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/examples/eventwebhook/consumer/Tests/EventWebhook.Tests/EventWebhook.Tests.csproj -------------------------------------------------------------------------------- /examples/eventwebhook/consumer/Tests/EventWebhook.Tests/TestData/events.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/examples/eventwebhook/consumer/Tests/EventWebhook.Tests/TestData/events.json -------------------------------------------------------------------------------- /examples/geo/geo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/examples/geo/geo.cs -------------------------------------------------------------------------------- /examples/inbound-webhook-handler/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/examples/inbound-webhook-handler/.dockerignore -------------------------------------------------------------------------------- /examples/inbound-webhook-handler/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/examples/inbound-webhook-handler/.vscode/launch.json -------------------------------------------------------------------------------- /examples/inbound-webhook-handler/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/examples/inbound-webhook-handler/.vscode/tasks.json -------------------------------------------------------------------------------- /examples/inbound-webhook-handler/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/examples/inbound-webhook-handler/Dockerfile -------------------------------------------------------------------------------- /examples/inbound-webhook-handler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/examples/inbound-webhook-handler/README.md -------------------------------------------------------------------------------- /examples/inbound-webhook-handler/SendGridInbound.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/examples/inbound-webhook-handler/SendGridInbound.sln -------------------------------------------------------------------------------- /examples/inbound-webhook-handler/Src/Inbound/Controllers/InboundController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/examples/inbound-webhook-handler/Src/Inbound/Controllers/InboundController.cs -------------------------------------------------------------------------------- /examples/inbound-webhook-handler/Src/Inbound/Inbound.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/examples/inbound-webhook-handler/Src/Inbound/Inbound.csproj -------------------------------------------------------------------------------- /examples/inbound-webhook-handler/Src/Inbound/Models/InboundEmail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/examples/inbound-webhook-handler/Src/Inbound/Models/InboundEmail.cs -------------------------------------------------------------------------------- /examples/inbound-webhook-handler/Src/Inbound/Models/InboundEmailAddress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/examples/inbound-webhook-handler/Src/Inbound/Models/InboundEmailAddress.cs -------------------------------------------------------------------------------- /examples/inbound-webhook-handler/Src/Inbound/Models/InboundEmailAttachment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/examples/inbound-webhook-handler/Src/Inbound/Models/InboundEmailAttachment.cs -------------------------------------------------------------------------------- /examples/inbound-webhook-handler/Src/Inbound/Models/InboundEmailEnvelope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/examples/inbound-webhook-handler/Src/Inbound/Models/InboundEmailEnvelope.cs -------------------------------------------------------------------------------- /examples/inbound-webhook-handler/Src/Inbound/Parsers/InboundWebhookParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/examples/inbound-webhook-handler/Src/Inbound/Parsers/InboundWebhookParser.cs -------------------------------------------------------------------------------- /examples/inbound-webhook-handler/Src/Inbound/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/examples/inbound-webhook-handler/Src/Inbound/Program.cs -------------------------------------------------------------------------------- /examples/inbound-webhook-handler/Src/Inbound/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/examples/inbound-webhook-handler/Src/Inbound/Startup.cs -------------------------------------------------------------------------------- /examples/inbound-webhook-handler/Src/Inbound/Util/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/examples/inbound-webhook-handler/Src/Inbound/Util/Extensions.cs -------------------------------------------------------------------------------- /examples/inbound-webhook-handler/Src/Inbound/Util/InboundWebhookParserHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/examples/inbound-webhook-handler/Src/Inbound/Util/InboundWebhookParserHelper.cs -------------------------------------------------------------------------------- /examples/inbound-webhook-handler/Src/Inbound/Views/Inbound/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/examples/inbound-webhook-handler/Src/Inbound/Views/Inbound/Index.cshtml -------------------------------------------------------------------------------- /examples/inbound-webhook-handler/Src/Inbound/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/examples/inbound-webhook-handler/Src/Inbound/appsettings.Development.json -------------------------------------------------------------------------------- /examples/inbound-webhook-handler/Src/Inbound/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/examples/inbound-webhook-handler/Src/Inbound/appsettings.json -------------------------------------------------------------------------------- /examples/inbound-webhook-handler/Tests/Inbound.Tests/Inbound.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/examples/inbound-webhook-handler/Tests/Inbound.Tests/Inbound.Tests.csproj -------------------------------------------------------------------------------- /examples/inbound-webhook-handler/Tests/Inbound.Tests/IntegrationTests/InboundEndpointsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/examples/inbound-webhook-handler/Tests/Inbound.Tests/IntegrationTests/InboundEndpointsTests.cs -------------------------------------------------------------------------------- /examples/inbound-webhook-handler/Tests/Inbound.Tests/Parsers/InboundWebhookParserTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/examples/inbound-webhook-handler/Tests/Inbound.Tests/Parsers/InboundWebhookParserTests.cs -------------------------------------------------------------------------------- /examples/inbound-webhook-handler/Tests/Inbound.Tests/sample_data/default_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/examples/inbound-webhook-handler/Tests/Inbound.Tests/sample_data/default_data.txt -------------------------------------------------------------------------------- /examples/inbound-webhook-handler/Tests/Inbound.Tests/sample_data/raw_data_with_attachments.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/examples/inbound-webhook-handler/Tests/Inbound.Tests/sample_data/raw_data_with_attachments.txt -------------------------------------------------------------------------------- /examples/inbound-webhook-handler/Tests/Inbound.Tests/sample_data/raw_email_with_attachments.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/examples/inbound-webhook-handler/Tests/Inbound.Tests/sample_data/raw_email_with_attachments.txt -------------------------------------------------------------------------------- /examples/ips/ips.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/examples/ips/ips.cs -------------------------------------------------------------------------------- /examples/mail/mail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/examples/mail/mail.cs -------------------------------------------------------------------------------- /examples/mailboxproviders/mailboxproviders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/examples/mailboxproviders/mailboxproviders.cs -------------------------------------------------------------------------------- /examples/mailsettings/mailsettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/examples/mailsettings/mailsettings.cs -------------------------------------------------------------------------------- /examples/partnersettings/partnersettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/examples/partnersettings/partnersettings.cs -------------------------------------------------------------------------------- /examples/scopes/scopes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/examples/scopes/scopes.cs -------------------------------------------------------------------------------- /examples/senderauthentication/senderauthentication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/examples/senderauthentication/senderauthentication.cs -------------------------------------------------------------------------------- /examples/senders/senders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/examples/senders/senders.cs -------------------------------------------------------------------------------- /examples/stats/stats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/examples/stats/stats.cs -------------------------------------------------------------------------------- /examples/subusers/subusers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/examples/subusers/subusers.cs -------------------------------------------------------------------------------- /examples/suppression/suppression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/examples/suppression/suppression.cs -------------------------------------------------------------------------------- /examples/templates/templates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/examples/templates/templates.cs -------------------------------------------------------------------------------- /examples/trackingsettings/trackingsettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/examples/trackingsettings/trackingsettings.cs -------------------------------------------------------------------------------- /examples/user/user.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/examples/user/user.cs -------------------------------------------------------------------------------- /src/SendGrid.Extensions.DependencyInjection/InjectableSendGridClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/src/SendGrid.Extensions.DependencyInjection/InjectableSendGridClient.cs -------------------------------------------------------------------------------- /src/SendGrid.Extensions.DependencyInjection/SendGrid.Extensions.DependencyInjection.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/src/SendGrid.Extensions.DependencyInjection/SendGrid.Extensions.DependencyInjection.csproj -------------------------------------------------------------------------------- /src/SendGrid.Extensions.DependencyInjection/ServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/src/SendGrid.Extensions.DependencyInjection/ServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/SendGrid/BaseClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/src/SendGrid/BaseClient.cs -------------------------------------------------------------------------------- /src/SendGrid/BaseClientOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/src/SendGrid/BaseClientOptions.cs -------------------------------------------------------------------------------- /src/SendGrid/Helpers/Errors/ErrorHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/src/SendGrid/Helpers/Errors/ErrorHandler.cs -------------------------------------------------------------------------------- /src/SendGrid/Helpers/Errors/Model/BadRequestException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/src/SendGrid/Helpers/Errors/Model/BadRequestException.cs -------------------------------------------------------------------------------- /src/SendGrid/Helpers/Errors/Model/ForbiddenException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/src/SendGrid/Helpers/Errors/Model/ForbiddenException.cs -------------------------------------------------------------------------------- /src/SendGrid/Helpers/Errors/Model/MethodNotAllowedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/src/SendGrid/Helpers/Errors/Model/MethodNotAllowedException.cs -------------------------------------------------------------------------------- /src/SendGrid/Helpers/Errors/Model/NotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/src/SendGrid/Helpers/Errors/Model/NotFoundException.cs -------------------------------------------------------------------------------- /src/SendGrid/Helpers/Errors/Model/PayloadTooLargeException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/src/SendGrid/Helpers/Errors/Model/PayloadTooLargeException.cs -------------------------------------------------------------------------------- /src/SendGrid/Helpers/Errors/Model/RequestErrorException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/src/SendGrid/Helpers/Errors/Model/RequestErrorException.cs -------------------------------------------------------------------------------- /src/SendGrid/Helpers/Errors/Model/SendGridErrorResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/src/SendGrid/Helpers/Errors/Model/SendGridErrorResponse.cs -------------------------------------------------------------------------------- /src/SendGrid/Helpers/Errors/Model/SendGridInternalException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/src/SendGrid/Helpers/Errors/Model/SendGridInternalException.cs -------------------------------------------------------------------------------- /src/SendGrid/Helpers/Errors/Model/ServerUnavailableException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/src/SendGrid/Helpers/Errors/Model/ServerUnavailableException.cs -------------------------------------------------------------------------------- /src/SendGrid/Helpers/Errors/Model/ServiceNotAvailableException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/src/SendGrid/Helpers/Errors/Model/ServiceNotAvailableException.cs -------------------------------------------------------------------------------- /src/SendGrid/Helpers/Errors/Model/TooManyRequestsException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/src/SendGrid/Helpers/Errors/Model/TooManyRequestsException.cs -------------------------------------------------------------------------------- /src/SendGrid/Helpers/Errors/Model/UnauthorizedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/src/SendGrid/Helpers/Errors/Model/UnauthorizedException.cs -------------------------------------------------------------------------------- /src/SendGrid/Helpers/Errors/Model/UnsupportedMediaTypeException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/src/SendGrid/Helpers/Errors/Model/UnsupportedMediaTypeException.cs -------------------------------------------------------------------------------- /src/SendGrid/Helpers/EventWebhook/RequestValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/src/SendGrid/Helpers/EventWebhook/RequestValidator.cs -------------------------------------------------------------------------------- /src/SendGrid/Helpers/Mail/MailHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/src/SendGrid/Helpers/Mail/MailHelper.cs -------------------------------------------------------------------------------- /src/SendGrid/Helpers/Mail/Model/ASM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/src/SendGrid/Helpers/Mail/Model/ASM.cs -------------------------------------------------------------------------------- /src/SendGrid/Helpers/Mail/Model/Attachment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/src/SendGrid/Helpers/Mail/Model/Attachment.cs -------------------------------------------------------------------------------- /src/SendGrid/Helpers/Mail/Model/BCCSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/src/SendGrid/Helpers/Mail/Model/BCCSettings.cs -------------------------------------------------------------------------------- /src/SendGrid/Helpers/Mail/Model/BypassBounceManagement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/src/SendGrid/Helpers/Mail/Model/BypassBounceManagement.cs -------------------------------------------------------------------------------- /src/SendGrid/Helpers/Mail/Model/BypassListManagement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/src/SendGrid/Helpers/Mail/Model/BypassListManagement.cs -------------------------------------------------------------------------------- /src/SendGrid/Helpers/Mail/Model/BypassSpamManagement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/src/SendGrid/Helpers/Mail/Model/BypassSpamManagement.cs -------------------------------------------------------------------------------- /src/SendGrid/Helpers/Mail/Model/BypassUnsubscribeManagement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/src/SendGrid/Helpers/Mail/Model/BypassUnsubscribeManagement.cs -------------------------------------------------------------------------------- /src/SendGrid/Helpers/Mail/Model/ClickTracking.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/src/SendGrid/Helpers/Mail/Model/ClickTracking.cs -------------------------------------------------------------------------------- /src/SendGrid/Helpers/Mail/Model/Content.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/src/SendGrid/Helpers/Mail/Model/Content.cs -------------------------------------------------------------------------------- /src/SendGrid/Helpers/Mail/Model/EmailAddress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/src/SendGrid/Helpers/Mail/Model/EmailAddress.cs -------------------------------------------------------------------------------- /src/SendGrid/Helpers/Mail/Model/FooterSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/src/SendGrid/Helpers/Mail/Model/FooterSettings.cs -------------------------------------------------------------------------------- /src/SendGrid/Helpers/Mail/Model/Ganalytics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/src/SendGrid/Helpers/Mail/Model/Ganalytics.cs -------------------------------------------------------------------------------- /src/SendGrid/Helpers/Mail/Model/HtmlContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/src/SendGrid/Helpers/Mail/Model/HtmlContent.cs -------------------------------------------------------------------------------- /src/SendGrid/Helpers/Mail/Model/JsonConverters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/src/SendGrid/Helpers/Mail/Model/JsonConverters.cs -------------------------------------------------------------------------------- /src/SendGrid/Helpers/Mail/Model/MailSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/src/SendGrid/Helpers/Mail/Model/MailSettings.cs -------------------------------------------------------------------------------- /src/SendGrid/Helpers/Mail/Model/OpenTracking.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/src/SendGrid/Helpers/Mail/Model/OpenTracking.cs -------------------------------------------------------------------------------- /src/SendGrid/Helpers/Mail/Model/Personalization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/src/SendGrid/Helpers/Mail/Model/Personalization.cs -------------------------------------------------------------------------------- /src/SendGrid/Helpers/Mail/Model/PlainTextContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/src/SendGrid/Helpers/Mail/Model/PlainTextContent.cs -------------------------------------------------------------------------------- /src/SendGrid/Helpers/Mail/Model/SandboxMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/src/SendGrid/Helpers/Mail/Model/SandboxMode.cs -------------------------------------------------------------------------------- /src/SendGrid/Helpers/Mail/Model/SpamCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/src/SendGrid/Helpers/Mail/Model/SpamCheck.cs -------------------------------------------------------------------------------- /src/SendGrid/Helpers/Mail/Model/SubscriptionTracking.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/src/SendGrid/Helpers/Mail/Model/SubscriptionTracking.cs -------------------------------------------------------------------------------- /src/SendGrid/Helpers/Mail/Model/TrackingSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/src/SendGrid/Helpers/Mail/Model/TrackingSettings.cs -------------------------------------------------------------------------------- /src/SendGrid/Helpers/Mail/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/src/SendGrid/Helpers/Mail/README.md -------------------------------------------------------------------------------- /src/SendGrid/Helpers/Mail/SendGridMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/src/SendGrid/Helpers/Mail/SendGridMessage.cs -------------------------------------------------------------------------------- /src/SendGrid/Helpers/Net40/TypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/src/SendGrid/Helpers/Net40/TypeExtensions.cs -------------------------------------------------------------------------------- /src/SendGrid/Helpers/TaskUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/src/SendGrid/Helpers/TaskUtilities.cs -------------------------------------------------------------------------------- /src/SendGrid/ISendGridClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/src/SendGrid/ISendGridClient.cs -------------------------------------------------------------------------------- /src/SendGrid/MimeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/src/SendGrid/MimeType.cs -------------------------------------------------------------------------------- /src/SendGrid/Permissions/ScopeOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/src/SendGrid/Permissions/ScopeOptions.cs -------------------------------------------------------------------------------- /src/SendGrid/Permissions/SendGridClientExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/src/SendGrid/Permissions/SendGridClientExtensions.cs -------------------------------------------------------------------------------- /src/SendGrid/Permissions/SendGridPermission.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/src/SendGrid/Permissions/SendGridPermission.cs -------------------------------------------------------------------------------- /src/SendGrid/Permissions/SendGridPermissionsBuilder.Scopes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/src/SendGrid/Permissions/SendGridPermissionsBuilder.Scopes.cs -------------------------------------------------------------------------------- /src/SendGrid/Permissions/SendGridPermissionsBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/src/SendGrid/Permissions/SendGridPermissionsBuilder.cs -------------------------------------------------------------------------------- /src/SendGrid/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/src/SendGrid/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/SendGrid/Reliability/ReliabilitySettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/src/SendGrid/Reliability/ReliabilitySettings.cs -------------------------------------------------------------------------------- /src/SendGrid/Reliability/RetryDelegatingHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/src/SendGrid/Reliability/RetryDelegatingHandler.cs -------------------------------------------------------------------------------- /src/SendGrid/Response.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/src/SendGrid/Response.cs -------------------------------------------------------------------------------- /src/SendGrid/SendGrid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/src/SendGrid/SendGrid.csproj -------------------------------------------------------------------------------- /src/SendGrid/SendGrid.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/src/SendGrid/SendGrid.ruleset -------------------------------------------------------------------------------- /src/SendGrid/SendGridClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/src/SendGrid/SendGridClient.cs -------------------------------------------------------------------------------- /src/SendGrid/SendGridClientOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/src/SendGrid/SendGridClientOptions.cs -------------------------------------------------------------------------------- /src/SendGrid/TwilioEmailClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/src/SendGrid/TwilioEmailClient.cs -------------------------------------------------------------------------------- /src/SendGrid/TwilioEmailClientOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/src/SendGrid/TwilioEmailClientOptions.cs -------------------------------------------------------------------------------- /src/SendGrid/stylecop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/src/SendGrid/stylecop.json -------------------------------------------------------------------------------- /static/img/github-fork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/static/img/github-fork.png -------------------------------------------------------------------------------- /static/img/github-sign-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/static/img/github-sign-up.png -------------------------------------------------------------------------------- /tests/SendGrid.Extensions.DependencyInjection.Tests/SendGrid.Extensions.DependencyInjection.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/tests/SendGrid.Extensions.DependencyInjection.Tests/SendGrid.Extensions.DependencyInjection.Tests.csproj -------------------------------------------------------------------------------- /tests/SendGrid.Extensions.DependencyInjection.Tests/ServiceCollectionExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/tests/SendGrid.Extensions.DependencyInjection.Tests/ServiceCollectionExtensionsTests.cs -------------------------------------------------------------------------------- /tests/SendGrid.Tests/Helpers/EventWebhook/RequestValidatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/tests/SendGrid.Tests/Helpers/EventWebhook/RequestValidatorTests.cs -------------------------------------------------------------------------------- /tests/SendGrid.Tests/Helpers/Mail/EmailAddressTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/tests/SendGrid.Tests/Helpers/Mail/EmailAddressTests.cs -------------------------------------------------------------------------------- /tests/SendGrid.Tests/Helpers/Mail/MailHelperTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/tests/SendGrid.Tests/Helpers/Mail/MailHelperTests.cs -------------------------------------------------------------------------------- /tests/SendGrid.Tests/Helpers/Mail/NonReadableStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/tests/SendGrid.Tests/Helpers/Mail/NonReadableStream.cs -------------------------------------------------------------------------------- /tests/SendGrid.Tests/Helpers/Mail/SendGridMessageTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/tests/SendGrid.Tests/Helpers/Mail/SendGridMessageTests.cs -------------------------------------------------------------------------------- /tests/SendGrid.Tests/Integration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/tests/SendGrid.Tests/Integration.cs -------------------------------------------------------------------------------- /tests/SendGrid.Tests/LicenseTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/tests/SendGrid.Tests/LicenseTests.cs -------------------------------------------------------------------------------- /tests/SendGrid.Tests/PermissionsBuilderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/tests/SendGrid.Tests/PermissionsBuilderTests.cs -------------------------------------------------------------------------------- /tests/SendGrid.Tests/PreSendEmailValidation/WhenCreatingASendGridMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/tests/SendGrid.Tests/PreSendEmailValidation/WhenCreatingASendGridMessage.cs -------------------------------------------------------------------------------- /tests/SendGrid.Tests/Reliability/ReliabilitySettingsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/tests/SendGrid.Tests/Reliability/ReliabilitySettingsTests.cs -------------------------------------------------------------------------------- /tests/SendGrid.Tests/Reliability/RetryDelegatingHandlerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/tests/SendGrid.Tests/Reliability/RetryDelegatingHandlerTests.cs -------------------------------------------------------------------------------- /tests/SendGrid.Tests/Reliability/RetryTestBehaviourDelegatingHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/tests/SendGrid.Tests/Reliability/RetryTestBehaviourDelegatingHandler.cs -------------------------------------------------------------------------------- /tests/SendGrid.Tests/RequiredFilesExistTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/tests/SendGrid.Tests/RequiredFilesExistTest.cs -------------------------------------------------------------------------------- /tests/SendGrid.Tests/ResponseTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/tests/SendGrid.Tests/ResponseTests.cs -------------------------------------------------------------------------------- /tests/SendGrid.Tests/SendGrid.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/tests/SendGrid.Tests/SendGrid.Tests.csproj -------------------------------------------------------------------------------- /tests/SendGrid.Tests/SendGridClientExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/tests/SendGrid.Tests/SendGridClientExtensionsTests.cs -------------------------------------------------------------------------------- /tests/SendGrid.Tests/SendgridEmailClientTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/tests/SendGrid.Tests/SendgridEmailClientTests.cs -------------------------------------------------------------------------------- /tests/SendGrid.Tests/TemplateDataSerialisationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/tests/SendGrid.Tests/TemplateDataSerialisationTests.cs -------------------------------------------------------------------------------- /tests/SendGrid.Tests/TwilioEmailClientTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/tests/SendGrid.Tests/TwilioEmailClientTests.cs -------------------------------------------------------------------------------- /tools/sendgrid-csharp.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/tools/sendgrid-csharp.snk -------------------------------------------------------------------------------- /twilio_sendgrid_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/sendgrid-csharp/HEAD/twilio_sendgrid_logo.png --------------------------------------------------------------------------------