Simple Notification AWS SMS
1.0.0
This project is a simple API developed in ASP.NET that includes an example implementation for sending SMS messages using Amazon SNS.
git clone https://github.com/tuusuario/tu-proyecto.git
appsettings.json
file and add the following AWS credentials and SMS message settings: {
"AwssmsMessageOptions" : {
"AwsAccessKeyId" : " TuAccessKeyId " ,
"AwsSecretAccessKeyId" : " TuSecretAccessKeyId " ,
"SystemName" : " NombreDeTuSistema "
}
}
dotnet run
The API provides endpoints to interact with the SMS message delivery service through Amazon SNS. You can access the API from any HTTP client.
If you prefer to run the API using Docker, follow these steps:
Make sure you have Docker installed on your system.
From the project root, build the Docker image:
docker build -t nombre-de-la-imagen .
Run the container:
docker run -p 5000:5000 nombre-de-la-imagen
If you want to contribute to the project, you can send pull requests.
This project is under the MIT license. See the LICENSE file for more details.