Hi,
I have the following line in my flow document:
var sendEmail = SimpleEmail.send('smtp.ntlworld.com',userGlobal.getEmail(),'
[EMAIL PROTECTED]','Your Receipt',receipt());
Instead of having to hard code the smtp address, in this case '
smtp.ntlworld.com', is there a server/environment variable that I can pull
this value from within flowscript? So my line will now look something like:
var sendEmail = SimpleEmail.send(cocoon.getISPsmtp,userGlobal.getEmail(),'
[EMAIL PROTECTED]','Your Receipt',receipt());
--
Regards
Andrew