I have to send a mail like this:
final Uri url = Uri(
scheme: 'mailto',
path: '',
query:
'subject=Invitation&Body=Hi, Click <a href="https://google.com">here</a> to launch Google',
);
launchUrl(url);
How do I set the mail body to be in HTML (so that here
is a link). Tried IsHtml=true
and IsHtmlBody=true
...