165d0a4320a977b8e0382d24b9aba7beeebd6dd4
[smartthings-infrastructure.git] / Methods / sendNotificationToContacts.groovy
1 /////////////////////////////////////////////////////////////////////
2 ////sendNotificationToContacts(text, recipients)
3 def sendNotificationToContacts(String text, String recipients) {
4         for (int i = 0;i < recipients.size();i++) {
5                 for (int j = 0;j < location.contacts.size();j++) {
6                         if (recipients[i] == location.contacts[j]) {
7                                 println("Sending \""+text+"\" to "+location.phoneNumbers[j].toString())
8                         }
9                 }
10         }
11 }