Send data from a form by email [closed]

-6

Hello, I'd like to know how to send data in a form via email. This form contains a profile image. example:

Profile photo: name: age: sex:

After saving these data, I wanted to make a long click on the saved option and open the share option via email and then send that data to other people.

    
asked by anonymous 25.08.2016 / 16:55

1 answer

0

If you want to pass this information on to any installed application with email sending functionality, use: Intent.ACTION_SEND . This link below has a well-designed example, capturing form data and sharing that data with another app.

link

    
25.08.2016 / 17:23