Skip to content

Commit

Permalink
Update SMS.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
JuanYanez292 authored Jun 26, 2024
1 parent 97c7d35 commit 70448e4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Inventario-API/BLL/SMS.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ namespace BLL
{
public class SMS
{
private const string AccountSid = "ACbd7fa196baf26722498e0687c6896886";
private const string AuthToken = "99c7b08cd87d8151fb34468026ab31eb";
private const string AccountSid = "";
private const string AuthToken = "";

public static void EnviarMensaje()
{
TwilioClient.Init(AccountSid, AuthToken);

var toPhoneNumber = "+528136183555";
var fromPhoneNumber = "+19386661795";
var toPhoneNumber = "";
var fromPhoneNumber = "";
var messageBody = "Un producto ha sido eliminado";

var messageOptions = new CreateMessageOptions(new PhoneNumber(toPhoneNumber))
Expand Down

0 comments on commit 70448e4

Please sign in to comment.