Missed this one when it came in - sorry!
You're not going to find a simple way to send an email from within DashBoard either (there are no libraries for that kind of action built-in/exposed). For the most part, you'll need a 3rd-party application to achieve this (unless you're particularly keen to re-create an SMTP client in ogScript).
1. If you have an application that can take String input on a port and automatically fire-off an email, `rosstalk.sendMessage('[host]', port, '[message as string]')` is a reasonable approach
2. If you have a web-based application that can take input and send an email, `ogscript.asyncPost('[URL]', '[data]', callback)` would work for you
3. If you created a new file each time the parameter changed and had an application that would take new files in a directory and send an email, `ogscript.saveToFile('[path]', '[data]', [overwrite]);` would work (to make sure you always get a NEW file, you can use something like `'c:sendTheseEmailsfile' + (new Date()).getTime() + '.txt'`). I found a few applications fairly quickly by Googling [QUOTE]automatically email a file in a directory (though I haven't used any of them personally)
Hope this provides you some direction.
#DashBoard