├── .gitignore ├── LICENSE ├── README.md └── SmsProject ├── Controllers └── SmsController.cs ├── Models └── SmsMessage.cs ├── Program.cs ├── Properties └── launchSettings.json ├── Services └── TwilioClient.cs ├── SmsProject.csproj ├── SmsProject.sln ├── Startup.cs ├── appsettings.Development.json └── appsettings.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMazeBlog/aspnetcore-send-sms/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMazeBlog/aspnetcore-send-sms/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMazeBlog/aspnetcore-send-sms/HEAD/README.md -------------------------------------------------------------------------------- /SmsProject/Controllers/SmsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMazeBlog/aspnetcore-send-sms/HEAD/SmsProject/Controllers/SmsController.cs -------------------------------------------------------------------------------- /SmsProject/Models/SmsMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMazeBlog/aspnetcore-send-sms/HEAD/SmsProject/Models/SmsMessage.cs -------------------------------------------------------------------------------- /SmsProject/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMazeBlog/aspnetcore-send-sms/HEAD/SmsProject/Program.cs -------------------------------------------------------------------------------- /SmsProject/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMazeBlog/aspnetcore-send-sms/HEAD/SmsProject/Properties/launchSettings.json -------------------------------------------------------------------------------- /SmsProject/Services/TwilioClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMazeBlog/aspnetcore-send-sms/HEAD/SmsProject/Services/TwilioClient.cs -------------------------------------------------------------------------------- /SmsProject/SmsProject.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMazeBlog/aspnetcore-send-sms/HEAD/SmsProject/SmsProject.csproj -------------------------------------------------------------------------------- /SmsProject/SmsProject.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMazeBlog/aspnetcore-send-sms/HEAD/SmsProject/SmsProject.sln -------------------------------------------------------------------------------- /SmsProject/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMazeBlog/aspnetcore-send-sms/HEAD/SmsProject/Startup.cs -------------------------------------------------------------------------------- /SmsProject/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMazeBlog/aspnetcore-send-sms/HEAD/SmsProject/appsettings.Development.json -------------------------------------------------------------------------------- /SmsProject/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeMazeBlog/aspnetcore-send-sms/HEAD/SmsProject/appsettings.json --------------------------------------------------------------------------------