I've uploaded the latest 3.0 version of ESP8266basic onto the -01 module and tried to run the email
program listed below. I flashed using the 1Mb option. This program had worked well with the version 2.0
body = "my first email from esp8266"
server = "mail.smtp2go.com"
port = 2525
user = "*******"
password = "*******"
sendto = "*******@*****.***"
sendfrom = "*******@smtp2go.com"
mess = "Email test"
setupemail server port user password
button "Send Email" [SendEmail]
button "Exit " [getout]
wait
[SendEmail]
email sendto sendfrom mess body
wait
[getout]
end
now I'm getting these error reports
Error at line 10: Failed to reach end of input expression, likely malformed input
Error at line 11: The arguments must be 2!
Error at line 11: Halted
Can you help me please?
Maurice