I have a variable $eXtip that I get at the start of my script.....
I then use the function _INetSmtpMail to send an email with that variable in the body of the email.....
Local $as_Body[2]
$as_Body[0] = " "
$as_Body[1] = "$eXtip"
instead of the variable I get the text:
eXtip in the email
what is the syntax to send the variable instead?
Thanks