b5afd49cec538feb3ea27204f00c4007ed62015e
[smartthings-infrastructure.git] / Methods / sendNotificationToContacts.groovy
1 /////////////////////////////////////////////////////////////////////
2 ////sendNotificationToContacts(text, recipients)
3 def sendNotificationToContacts(String text, List 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 }