I’m currently sending a SMS alert using webhooks and Twilio
Based on what I have been reading in order to send a sms to multiple recipients I would need to make a separate API request for each sms. Currently, I’m storing a single phone number in EEPROM and
and sending it using this code:
snprintf(alertSensorSms, sizeof(alertSensorSms), "{\"N\": \"%s\", \"T\": \"%s\", \"M\": \"%s\"}", dev_name, phone_str, message_str);
publishQueue.publish("NC_SMS", alertSensorSms, 60, PRIVATE);
Any recommendations on how I should approach the option of adding multiple recipients?