Alert.email() |
Top Previous Next |
Alert.email( body [, subject] [,prefix] )
This function generates an email alert using the text passed as parameters. Note that you must first set up your email configuration in the Alerts dialog in eSignal.
Parameters
Usage
var bCondition = false;
function main() {
... ... if ( bCondition==true ) { Alert.email( "Breakout alert for IBM", "Alert!!!" ); ... }
}
|