SMS
Code
PerigeeApplication.ApplicationNoInit("SMS", (c) => {
//Register once
AlertManager.RegisterSMS_Vonage("Vonage", "11231234567", "key", "secret");
AlertManager.RegisterSMS_Twilio("Twilio", "11231234567", "accountkey", "apikey", "apisecret");
//Alert from anywhere in the application later
var rsp = AlertManager.SMS("Twilio", "19998887777", "Sending a message via twilio");
});Last updated

