Beispiel #1
0
        public void SendBulkSMS()
        {
            var             host       = new ApiHost(new BasicAuth(ClientCredentials.GetClientId(), ClientCredentials.GetSecret()));
            var             messageApi = new MessagingApi(host);
            MessageResponse msg        = messageApi.SendQuickMessage(MessageId, Phone, MessageBody, RegisteredDelivery);

            Console.WriteLine("Message Sent Successfully to  " + Phone);
        }