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?
Thanks
Thanks
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
Comment