Example #1
0
        public static void SendPasswordMessage(string phoneNumber, string newPassword)
        {
            string message = string.Format(PASSWORD_MESSAGEING_TEMPLATE, newPassword);

            SMSService.SendSMS(phoneNumber, message);
        }