I do not use z-wave devices, so am not familiar with the details. It sounds like you are using HS as a virtual security system with stand-alone z-wave sensors. I'm pretty sure there are others doing the same. I suggest you ask your question in the z-wave forum: https://forums.homeseer.com/forumdisplay.php?f=624
It's possible that someone has come up with a solution or at least can provide more specific guidance.
Announcement
Collapse
No announcement yet.
How can I report which trigger was responsible for triggering an event in an email?
Collapse
X
-
Thanks for the replies and suggestions. These are just of Zwave sensors which are triggering the event. I'm running HS3 with a Z-stick on a RPi3. Not sure if what you said applies here or not.
Leave a comment:
-
Originally posted by ZRadiooo View PostThanks. Actually, I think I saw you post this previously in my searching, lol. I'd prefer to not have an event for each device in my security system. The software I came from was able to do this, so I'm a bit surprised HomeSeer doesn't have this capability.
If this issue is limited to your security system, I'd recommend posting it there as well. Perhaps the plug-in already has a feature or the author may consider adding something that will facilitate what you are looking to do.
PS. Welcome to the Homeseer Board.
Leave a comment:
-
Thanks. Actually, I think I saw you post this previously in my searching, lol. I'd prefer to not have an event for each device in my security system. The software I came from was able to do this, so I'm a bit surprised HomeSeer doesn't have this capability.
Leave a comment:
-
I do this by using a separate event for each "trigger". All the events run the same script, but pass a parameter (strSubject) to the script to indicate what triggered the email (text message, actually, in my case).
Code:Public Sub Main(ByVal strSubject As String) Dim strFrom As String = "____@gmail.com" Dim strTo1 As String = "__________@tmomail.net" Dim strMessage As String = "$time $date" hs.SendEmail(strTo1, strFrom, "", "", strSubject, strMessage, "") End Sub
Leave a comment:
-
How can I report which trigger was responsible for triggering an event in an email?
Sorry all, new to HS, but I've done a lot of searching and I don't see anything in the scripting help file that I can use to reference which "trigger" tripped the event into the email script. Anyway to do this?
ThanksTags: None
Leave a comment: