Can anyone point me to documentation on the email alert function in EFS. I am trying to mail myself stuff, and the syntax example I have is not robust enough. I appreciate the help,
Thomas.
Thomas.
// modify the line below to change the email SUBJECT
// header should have cobra - symbol - long
semailsubject ="<' Cobra+ - Long " ;
// modify the line below to change the email CONTENTS
semailcontents = vMonth+"/"+vDay+"-"+vHour+":"+vMin+":"+vSec+" Long @ "+rnd(EntryPrice)+ " with a Sell Stop @ "+rnd(StopPrice);
// Send the email to the group
Alert.email(semailcontents, semailsubject);
Comment