private void byeSMS(string to, string msg, string user, string pwd) { Sms sms = new Sms(); sms.To = to; sms.Message = msg; sendable.DoLogin(user, pwd); sendable.SendSMS(sms); }
private void byeSMS(string to, string msg, string user, string pwd, System.Diagnostics.EventLog eventLog) { Sms sms = new Sms(); sms.To = to; sms.Message = msg; sendable.DoLogin(user, pwd); sendable.SendSMS(sms, eventLog); }