├── .github └── pull_request_template.md ├── .gitignore ├── LICENSE.txt ├── Mandrill.sln ├── README.md ├── UpdateVersion.ps1 ├── appveyor.yml ├── docs └── icons │ └── 32x32.png ├── src └── Mandrill │ ├── Configuration.cs │ ├── IMandrillApi.cs │ ├── Mandrill.csproj │ ├── MandrillApi.cs │ ├── Messages.cs │ ├── Models │ ├── Attachment.cs │ ├── Content.cs │ ├── Dkim.cs │ ├── EmailAddress.cs │ ├── EmailMessage.cs │ ├── EmailResult.cs │ ├── ErrorResponse.cs │ ├── MergeLanguage.cs │ ├── MergeVars.cs │ ├── MessageInfo.cs │ ├── Recipient.cs │ ├── RejectInfo.cs │ ├── RenderedTemplate.cs │ ├── ScheduledEmailResult.cs │ ├── SearchResult.cs │ ├── Sender.cs │ ├── SenderDomain.cs │ ├── SmtpEvent.cs │ ├── Spf.cs │ ├── SubaccountInfo.cs │ ├── TemplateContent.cs │ ├── TemplateInfo.cs │ ├── TemplateTimeSeries.cs │ ├── TemplateType.cs │ ├── UserInfo.cs │ └── WebHookEvent.cs │ ├── Rejects.cs │ ├── Requests │ ├── Messages │ │ ├── CancelScheduledMessageRequest.cs │ │ ├── ContentRequest.cs │ │ ├── ListScheduledMessagesRequest.cs │ │ ├── MessageInfoRequest.cs │ │ ├── RescheduleMessageRequest.cs │ │ ├── SearchRequest.cs │ │ ├── SendMessageRequest.cs │ │ ├── SendMessageTemplateRequest.cs │ │ └── SendRawMessageRequest.cs │ ├── Rejects │ │ ├── AddRejectRequest.cs │ │ ├── DeleteRejectRequest.cs │ │ └── ListRejectsRequest.cs │ ├── RequestBase.cs │ ├── Senders │ │ ├── SenderCheckDomainRequest.cs │ │ └── SenderInfoRequest.cs │ ├── SubAccounts │ │ ├── AddSubAccountRequest.cs │ │ ├── DeleteSubAccountRequest.cs │ │ ├── ListSubAccountsRequest.cs │ │ ├── PauseSubAccountRequest.cs │ │ ├── ResumeSubAccountRequest.cs │ │ ├── SubAccountInfoRequest.cs │ │ └── UpdateSubAccountRequest.cs │ └── Templates │ │ ├── AddTemplateRequest.cs │ │ ├── DeleteTemplateRequest.cs │ │ ├── ListTemplatesRequest.cs │ │ ├── RenderTemplateRequest.cs │ │ ├── TemplateInfoRequest.cs │ │ ├── TemplateTimeSeriesRequests.cs │ │ └── UpdateTemplateRequest.cs │ ├── Senders.cs │ ├── SubAccounts.cs │ ├── Tags.cs │ ├── Templates.cs │ ├── Urls.cs │ ├── Users.cs │ └── Utilities │ ├── JSON.cs │ ├── MandrillException.cs │ └── MandrillSerializationException.cs └── tests └── Mandrill.Tests ├── IntegrationTests ├── IntegrationTestBase.cs ├── Messages │ ├── CancelScheduledMessageTests.cs │ ├── ContentTests.cs │ ├── InfoTests.cs │ ├── RescheduleMessageTests.cs │ ├── SearchTests.cs │ ├── SendRawTests.cs │ ├── SendTemplateTests.cs │ └── SendTests.cs ├── Rejects │ ├── AddRejectTests.cs │ ├── DeleteRejectTests.cs │ └── ListRejectsTests.cs ├── Senders │ ├── CheckSenderDomainTests.cs │ ├── ListSendersTests.cs │ ├── SenderDomains.cs │ └── SenderInfoTests.cs ├── SubAccounts │ ├── AddSubAccountTests.cs │ ├── DeleteSubAccountTests.cs │ ├── ListSubAccountTests.cs │ ├── PauseSubAccountTests.cs │ ├── ResumeSubAccountTests.cs │ ├── SubAccountInfoTests.cs │ └── UpdateSubAccountTests.cs ├── Templates │ ├── AddTemplateTests.cs │ ├── ListTemplatesTests.cs │ ├── RenderTemplateTests.cs │ ├── TemplateInfoTests.cs │ ├── TemplateTimeSeriesTests.cs │ └── UpdateTemplateTests.cs └── Users │ ├── InfoTests.cs │ └── PingTests.cs ├── Mandrill.Tests.csproj ├── TestSettings.cs ├── UnitTests ├── PostTests.cs └── WebHookTests.cs └── test-settings.json /.github/pull_request_template.md: -------------------------------------------------------------------------------- 1 | - [ ] test 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Mandrill.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/Mandrill.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/README.md -------------------------------------------------------------------------------- /UpdateVersion.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/UpdateVersion.ps1 -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/appveyor.yml -------------------------------------------------------------------------------- /docs/icons/32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/docs/icons/32x32.png -------------------------------------------------------------------------------- /src/Mandrill/Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/src/Mandrill/Configuration.cs -------------------------------------------------------------------------------- /src/Mandrill/IMandrillApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/src/Mandrill/IMandrillApi.cs -------------------------------------------------------------------------------- /src/Mandrill/Mandrill.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/src/Mandrill/Mandrill.csproj -------------------------------------------------------------------------------- /src/Mandrill/MandrillApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/src/Mandrill/MandrillApi.cs -------------------------------------------------------------------------------- /src/Mandrill/Messages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/src/Mandrill/Messages.cs -------------------------------------------------------------------------------- /src/Mandrill/Models/Attachment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/src/Mandrill/Models/Attachment.cs -------------------------------------------------------------------------------- /src/Mandrill/Models/Content.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/src/Mandrill/Models/Content.cs -------------------------------------------------------------------------------- /src/Mandrill/Models/Dkim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/src/Mandrill/Models/Dkim.cs -------------------------------------------------------------------------------- /src/Mandrill/Models/EmailAddress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/src/Mandrill/Models/EmailAddress.cs -------------------------------------------------------------------------------- /src/Mandrill/Models/EmailMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/src/Mandrill/Models/EmailMessage.cs -------------------------------------------------------------------------------- /src/Mandrill/Models/EmailResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/src/Mandrill/Models/EmailResult.cs -------------------------------------------------------------------------------- /src/Mandrill/Models/ErrorResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/src/Mandrill/Models/ErrorResponse.cs -------------------------------------------------------------------------------- /src/Mandrill/Models/MergeLanguage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/src/Mandrill/Models/MergeLanguage.cs -------------------------------------------------------------------------------- /src/Mandrill/Models/MergeVars.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/src/Mandrill/Models/MergeVars.cs -------------------------------------------------------------------------------- /src/Mandrill/Models/MessageInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/src/Mandrill/Models/MessageInfo.cs -------------------------------------------------------------------------------- /src/Mandrill/Models/Recipient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/src/Mandrill/Models/Recipient.cs -------------------------------------------------------------------------------- /src/Mandrill/Models/RejectInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/src/Mandrill/Models/RejectInfo.cs -------------------------------------------------------------------------------- /src/Mandrill/Models/RenderedTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/src/Mandrill/Models/RenderedTemplate.cs -------------------------------------------------------------------------------- /src/Mandrill/Models/ScheduledEmailResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/src/Mandrill/Models/ScheduledEmailResult.cs -------------------------------------------------------------------------------- /src/Mandrill/Models/SearchResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/src/Mandrill/Models/SearchResult.cs -------------------------------------------------------------------------------- /src/Mandrill/Models/Sender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/src/Mandrill/Models/Sender.cs -------------------------------------------------------------------------------- /src/Mandrill/Models/SenderDomain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/src/Mandrill/Models/SenderDomain.cs -------------------------------------------------------------------------------- /src/Mandrill/Models/SmtpEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/src/Mandrill/Models/SmtpEvent.cs -------------------------------------------------------------------------------- /src/Mandrill/Models/Spf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/src/Mandrill/Models/Spf.cs -------------------------------------------------------------------------------- /src/Mandrill/Models/SubaccountInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/src/Mandrill/Models/SubaccountInfo.cs -------------------------------------------------------------------------------- /src/Mandrill/Models/TemplateContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/src/Mandrill/Models/TemplateContent.cs -------------------------------------------------------------------------------- /src/Mandrill/Models/TemplateInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/src/Mandrill/Models/TemplateInfo.cs -------------------------------------------------------------------------------- /src/Mandrill/Models/TemplateTimeSeries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/src/Mandrill/Models/TemplateTimeSeries.cs -------------------------------------------------------------------------------- /src/Mandrill/Models/TemplateType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/src/Mandrill/Models/TemplateType.cs -------------------------------------------------------------------------------- /src/Mandrill/Models/UserInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/src/Mandrill/Models/UserInfo.cs -------------------------------------------------------------------------------- /src/Mandrill/Models/WebHookEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/src/Mandrill/Models/WebHookEvent.cs -------------------------------------------------------------------------------- /src/Mandrill/Rejects.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/src/Mandrill/Rejects.cs -------------------------------------------------------------------------------- /src/Mandrill/Requests/Messages/CancelScheduledMessageRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/src/Mandrill/Requests/Messages/CancelScheduledMessageRequest.cs -------------------------------------------------------------------------------- /src/Mandrill/Requests/Messages/ContentRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/src/Mandrill/Requests/Messages/ContentRequest.cs -------------------------------------------------------------------------------- /src/Mandrill/Requests/Messages/ListScheduledMessagesRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/src/Mandrill/Requests/Messages/ListScheduledMessagesRequest.cs -------------------------------------------------------------------------------- /src/Mandrill/Requests/Messages/MessageInfoRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/src/Mandrill/Requests/Messages/MessageInfoRequest.cs -------------------------------------------------------------------------------- /src/Mandrill/Requests/Messages/RescheduleMessageRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/src/Mandrill/Requests/Messages/RescheduleMessageRequest.cs -------------------------------------------------------------------------------- /src/Mandrill/Requests/Messages/SearchRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/src/Mandrill/Requests/Messages/SearchRequest.cs -------------------------------------------------------------------------------- /src/Mandrill/Requests/Messages/SendMessageRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/src/Mandrill/Requests/Messages/SendMessageRequest.cs -------------------------------------------------------------------------------- /src/Mandrill/Requests/Messages/SendMessageTemplateRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/src/Mandrill/Requests/Messages/SendMessageTemplateRequest.cs -------------------------------------------------------------------------------- /src/Mandrill/Requests/Messages/SendRawMessageRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/src/Mandrill/Requests/Messages/SendRawMessageRequest.cs -------------------------------------------------------------------------------- /src/Mandrill/Requests/Rejects/AddRejectRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/src/Mandrill/Requests/Rejects/AddRejectRequest.cs -------------------------------------------------------------------------------- /src/Mandrill/Requests/Rejects/DeleteRejectRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/src/Mandrill/Requests/Rejects/DeleteRejectRequest.cs -------------------------------------------------------------------------------- /src/Mandrill/Requests/Rejects/ListRejectsRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/src/Mandrill/Requests/Rejects/ListRejectsRequest.cs -------------------------------------------------------------------------------- /src/Mandrill/Requests/RequestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/src/Mandrill/Requests/RequestBase.cs -------------------------------------------------------------------------------- /src/Mandrill/Requests/Senders/SenderCheckDomainRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/src/Mandrill/Requests/Senders/SenderCheckDomainRequest.cs -------------------------------------------------------------------------------- /src/Mandrill/Requests/Senders/SenderInfoRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/src/Mandrill/Requests/Senders/SenderInfoRequest.cs -------------------------------------------------------------------------------- /src/Mandrill/Requests/SubAccounts/AddSubAccountRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/src/Mandrill/Requests/SubAccounts/AddSubAccountRequest.cs -------------------------------------------------------------------------------- /src/Mandrill/Requests/SubAccounts/DeleteSubAccountRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/src/Mandrill/Requests/SubAccounts/DeleteSubAccountRequest.cs -------------------------------------------------------------------------------- /src/Mandrill/Requests/SubAccounts/ListSubAccountsRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/src/Mandrill/Requests/SubAccounts/ListSubAccountsRequest.cs -------------------------------------------------------------------------------- /src/Mandrill/Requests/SubAccounts/PauseSubAccountRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/src/Mandrill/Requests/SubAccounts/PauseSubAccountRequest.cs -------------------------------------------------------------------------------- /src/Mandrill/Requests/SubAccounts/ResumeSubAccountRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/src/Mandrill/Requests/SubAccounts/ResumeSubAccountRequest.cs -------------------------------------------------------------------------------- /src/Mandrill/Requests/SubAccounts/SubAccountInfoRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/src/Mandrill/Requests/SubAccounts/SubAccountInfoRequest.cs -------------------------------------------------------------------------------- /src/Mandrill/Requests/SubAccounts/UpdateSubAccountRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/src/Mandrill/Requests/SubAccounts/UpdateSubAccountRequest.cs -------------------------------------------------------------------------------- /src/Mandrill/Requests/Templates/AddTemplateRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/src/Mandrill/Requests/Templates/AddTemplateRequest.cs -------------------------------------------------------------------------------- /src/Mandrill/Requests/Templates/DeleteTemplateRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/src/Mandrill/Requests/Templates/DeleteTemplateRequest.cs -------------------------------------------------------------------------------- /src/Mandrill/Requests/Templates/ListTemplatesRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/src/Mandrill/Requests/Templates/ListTemplatesRequest.cs -------------------------------------------------------------------------------- /src/Mandrill/Requests/Templates/RenderTemplateRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/src/Mandrill/Requests/Templates/RenderTemplateRequest.cs -------------------------------------------------------------------------------- /src/Mandrill/Requests/Templates/TemplateInfoRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/src/Mandrill/Requests/Templates/TemplateInfoRequest.cs -------------------------------------------------------------------------------- /src/Mandrill/Requests/Templates/TemplateTimeSeriesRequests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/src/Mandrill/Requests/Templates/TemplateTimeSeriesRequests.cs -------------------------------------------------------------------------------- /src/Mandrill/Requests/Templates/UpdateTemplateRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/src/Mandrill/Requests/Templates/UpdateTemplateRequest.cs -------------------------------------------------------------------------------- /src/Mandrill/Senders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/src/Mandrill/Senders.cs -------------------------------------------------------------------------------- /src/Mandrill/SubAccounts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/src/Mandrill/SubAccounts.cs -------------------------------------------------------------------------------- /src/Mandrill/Tags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/src/Mandrill/Tags.cs -------------------------------------------------------------------------------- /src/Mandrill/Templates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/src/Mandrill/Templates.cs -------------------------------------------------------------------------------- /src/Mandrill/Urls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/src/Mandrill/Urls.cs -------------------------------------------------------------------------------- /src/Mandrill/Users.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/src/Mandrill/Users.cs -------------------------------------------------------------------------------- /src/Mandrill/Utilities/JSON.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/src/Mandrill/Utilities/JSON.cs -------------------------------------------------------------------------------- /src/Mandrill/Utilities/MandrillException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/src/Mandrill/Utilities/MandrillException.cs -------------------------------------------------------------------------------- /src/Mandrill/Utilities/MandrillSerializationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/src/Mandrill/Utilities/MandrillSerializationException.cs -------------------------------------------------------------------------------- /tests/Mandrill.Tests/IntegrationTests/IntegrationTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/tests/Mandrill.Tests/IntegrationTests/IntegrationTestBase.cs -------------------------------------------------------------------------------- /tests/Mandrill.Tests/IntegrationTests/Messages/CancelScheduledMessageTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/tests/Mandrill.Tests/IntegrationTests/Messages/CancelScheduledMessageTests.cs -------------------------------------------------------------------------------- /tests/Mandrill.Tests/IntegrationTests/Messages/ContentTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/tests/Mandrill.Tests/IntegrationTests/Messages/ContentTests.cs -------------------------------------------------------------------------------- /tests/Mandrill.Tests/IntegrationTests/Messages/InfoTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/tests/Mandrill.Tests/IntegrationTests/Messages/InfoTests.cs -------------------------------------------------------------------------------- /tests/Mandrill.Tests/IntegrationTests/Messages/RescheduleMessageTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/tests/Mandrill.Tests/IntegrationTests/Messages/RescheduleMessageTests.cs -------------------------------------------------------------------------------- /tests/Mandrill.Tests/IntegrationTests/Messages/SearchTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/tests/Mandrill.Tests/IntegrationTests/Messages/SearchTests.cs -------------------------------------------------------------------------------- /tests/Mandrill.Tests/IntegrationTests/Messages/SendRawTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/tests/Mandrill.Tests/IntegrationTests/Messages/SendRawTests.cs -------------------------------------------------------------------------------- /tests/Mandrill.Tests/IntegrationTests/Messages/SendTemplateTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/tests/Mandrill.Tests/IntegrationTests/Messages/SendTemplateTests.cs -------------------------------------------------------------------------------- /tests/Mandrill.Tests/IntegrationTests/Messages/SendTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/tests/Mandrill.Tests/IntegrationTests/Messages/SendTests.cs -------------------------------------------------------------------------------- /tests/Mandrill.Tests/IntegrationTests/Rejects/AddRejectTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/tests/Mandrill.Tests/IntegrationTests/Rejects/AddRejectTests.cs -------------------------------------------------------------------------------- /tests/Mandrill.Tests/IntegrationTests/Rejects/DeleteRejectTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/tests/Mandrill.Tests/IntegrationTests/Rejects/DeleteRejectTests.cs -------------------------------------------------------------------------------- /tests/Mandrill.Tests/IntegrationTests/Rejects/ListRejectsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/tests/Mandrill.Tests/IntegrationTests/Rejects/ListRejectsTests.cs -------------------------------------------------------------------------------- /tests/Mandrill.Tests/IntegrationTests/Senders/CheckSenderDomainTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/tests/Mandrill.Tests/IntegrationTests/Senders/CheckSenderDomainTests.cs -------------------------------------------------------------------------------- /tests/Mandrill.Tests/IntegrationTests/Senders/ListSendersTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/tests/Mandrill.Tests/IntegrationTests/Senders/ListSendersTests.cs -------------------------------------------------------------------------------- /tests/Mandrill.Tests/IntegrationTests/Senders/SenderDomains.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/tests/Mandrill.Tests/IntegrationTests/Senders/SenderDomains.cs -------------------------------------------------------------------------------- /tests/Mandrill.Tests/IntegrationTests/Senders/SenderInfoTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/tests/Mandrill.Tests/IntegrationTests/Senders/SenderInfoTests.cs -------------------------------------------------------------------------------- /tests/Mandrill.Tests/IntegrationTests/SubAccounts/AddSubAccountTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/tests/Mandrill.Tests/IntegrationTests/SubAccounts/AddSubAccountTests.cs -------------------------------------------------------------------------------- /tests/Mandrill.Tests/IntegrationTests/SubAccounts/DeleteSubAccountTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/tests/Mandrill.Tests/IntegrationTests/SubAccounts/DeleteSubAccountTests.cs -------------------------------------------------------------------------------- /tests/Mandrill.Tests/IntegrationTests/SubAccounts/ListSubAccountTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/tests/Mandrill.Tests/IntegrationTests/SubAccounts/ListSubAccountTests.cs -------------------------------------------------------------------------------- /tests/Mandrill.Tests/IntegrationTests/SubAccounts/PauseSubAccountTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/tests/Mandrill.Tests/IntegrationTests/SubAccounts/PauseSubAccountTests.cs -------------------------------------------------------------------------------- /tests/Mandrill.Tests/IntegrationTests/SubAccounts/ResumeSubAccountTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/tests/Mandrill.Tests/IntegrationTests/SubAccounts/ResumeSubAccountTests.cs -------------------------------------------------------------------------------- /tests/Mandrill.Tests/IntegrationTests/SubAccounts/SubAccountInfoTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/tests/Mandrill.Tests/IntegrationTests/SubAccounts/SubAccountInfoTests.cs -------------------------------------------------------------------------------- /tests/Mandrill.Tests/IntegrationTests/SubAccounts/UpdateSubAccountTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/tests/Mandrill.Tests/IntegrationTests/SubAccounts/UpdateSubAccountTests.cs -------------------------------------------------------------------------------- /tests/Mandrill.Tests/IntegrationTests/Templates/AddTemplateTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/tests/Mandrill.Tests/IntegrationTests/Templates/AddTemplateTests.cs -------------------------------------------------------------------------------- /tests/Mandrill.Tests/IntegrationTests/Templates/ListTemplatesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/tests/Mandrill.Tests/IntegrationTests/Templates/ListTemplatesTests.cs -------------------------------------------------------------------------------- /tests/Mandrill.Tests/IntegrationTests/Templates/RenderTemplateTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/tests/Mandrill.Tests/IntegrationTests/Templates/RenderTemplateTests.cs -------------------------------------------------------------------------------- /tests/Mandrill.Tests/IntegrationTests/Templates/TemplateInfoTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/tests/Mandrill.Tests/IntegrationTests/Templates/TemplateInfoTests.cs -------------------------------------------------------------------------------- /tests/Mandrill.Tests/IntegrationTests/Templates/TemplateTimeSeriesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/tests/Mandrill.Tests/IntegrationTests/Templates/TemplateTimeSeriesTests.cs -------------------------------------------------------------------------------- /tests/Mandrill.Tests/IntegrationTests/Templates/UpdateTemplateTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/tests/Mandrill.Tests/IntegrationTests/Templates/UpdateTemplateTests.cs -------------------------------------------------------------------------------- /tests/Mandrill.Tests/IntegrationTests/Users/InfoTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/tests/Mandrill.Tests/IntegrationTests/Users/InfoTests.cs -------------------------------------------------------------------------------- /tests/Mandrill.Tests/IntegrationTests/Users/PingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/tests/Mandrill.Tests/IntegrationTests/Users/PingTests.cs -------------------------------------------------------------------------------- /tests/Mandrill.Tests/Mandrill.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/tests/Mandrill.Tests/Mandrill.Tests.csproj -------------------------------------------------------------------------------- /tests/Mandrill.Tests/TestSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/tests/Mandrill.Tests/TestSettings.cs -------------------------------------------------------------------------------- /tests/Mandrill.Tests/UnitTests/PostTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/tests/Mandrill.Tests/UnitTests/PostTests.cs -------------------------------------------------------------------------------- /tests/Mandrill.Tests/UnitTests/WebHookTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/tests/Mandrill.Tests/UnitTests/WebHookTests.cs -------------------------------------------------------------------------------- /tests/Mandrill.Tests/test-settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shawnmclean/Mandrill-dotnet/HEAD/tests/Mandrill.Tests/test-settings.json --------------------------------------------------------------------------------