I found two articles (Open default mail client along with a attachment and open an existing email with outlook from a website) which indicate using the "mailto" token allows passing the "subject" and "body" as parameters in the URL. So far, this hasn't worked for me. (NOTE: I'm trying to get this to work on the Android emulator and the email account is configured and working.)
I'm doing:
await Launcher.OpenAsync($"mailto:{address}?subject:{subject}&body:{body}");
After having populated appropriate variables. It does open the Gmail app and opens a draft with the address in the "to". But the "subject" and "body" are empty.