Alert subscription stopped sending emails
Hi,
I have a subscription to an alert that has stopped sending emails. The subscription to AnyAlert is enabled on a Thing Template, and the alerts are enabled on the appropriate Things. The subscription code is:
sensorMessage = eventData.description + " at Sensor " + me.SensorID;
linkMessage = "You can view the status of all sensors locations here."
var params = {
cc: "username@gmail.com",
subject: me.SensorName + " alert" /* STRING */,
from: "username@company.com" /* STRING */,
to: me.ThingManager.smsAddress,
body: "At "+ eventTime + " " + sensorMessage + "<br>" + linkMessage,
};
Things["PasswordMailServer"].SendMessage(params);
The alerts were sending emails correctly a week ago. I acknowledged a few of the alerts in the monitor, but not all, and added several new alerts that are still not sending emails, although I can see the new alerts in the Alert Summary.
I'd appreciate any help!
Thanks

