Hi,
I'm developing a GPS application that get the GPS position and send it as a Google Map URL. The goal is to receive an email with a link inside that refers directly to a map, in order to show my position.
The problem is that I generate with B4A the following string (checked with a message box):
"http://maps.google.com/maps?q=44.81814723,10.2855763&ll=44.81814723,10.2855763&z=14"
after sendig it with
SMTP.To.Add (destinationmail@mydomain.com)
SMTP.Subject = "GPS - Actual Position"
SMTP.HtmlBody = False
SMTP.Body = message
SMTP.Send
the string in the mail becomes:
As you can see, after the "equal" the next char is wrong.
tested with SMTP.HtmlBody = False or with SMTP.HtmlBody = True
same wrong result.
The actual workaround is to insert two "space" after the "equal"