If the user wants to have a push open to sending an email, they use a link in the form mailto:<email>@<domain>?subject=<uri escaped subject>. The notable tricky party here for users is going to be that spaces in the subject must be replaced with %20. I found https://meyerweb.com/eric/tools/dencoder/ as a quick and dirty encoder, but we may want to try embedding a little JS app in the docs that does it?
If the user wants to have a push open to sending an email, they use a link in the form
mailto:<email>@<domain>?subject=<uri escaped subject>. The notable tricky party here for users is going to be that spaces in the subject must be replaced with%20. I found https://meyerweb.com/eric/tools/dencoder/ as a quick and dirty encoder, but we may want to try embedding a little JS app in the docs that does it?