• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

App Inventor Send mail without intent

I am trying to get in side the body a Variable with was inputted inside the EDITText Forms. It needs to be a string.
In your "body" String you should be using your String variables which already have the values from your EditText/s converted to strings.

I made the changes and cleaned it up for you:
Java:
String body = "Voornaam " + de_naam + " Achternaam " +  de_achternaam + " Email :" + de_email + " Telefoon:" + de_Telefoon;
 
thanks but that didn't fix my problem.

I'm not actually clear what your problem is, what you're trying to do, or what 'does not work'.

Please clarify what the issue is, and how the behaviour doesn't match up to what you're expecting.
 
Back
Top Bottom