Android mail app url li

You're looking for the URL link to open the default Android email app.

The URL scheme to open the default email app on Android is mailto. You can use it in the following format:

mailto:<email address>?subject=<subject>&body=<body>

Here's a breakdown of the parameters:

For example, if you want to send an email to [email protected] with the subject "Hello" and body "This is a test email", the URL would be:

mailto:[email protected]?subject=Hello&body=This%20is%20a%20test%20email

Note that you need to URL-encode any special characters in the subject and body using %20 (space) or other encoding schemes.

You can use this URL scheme in a web page, an app, or even a QR code to open the default email app on an Android device.