I am working on a functionality "Share Link" in which I have to open a mail client and pass a link. I tried two ways,one is this way :
Window.location.href = "mailto:user@example.com?subject=Subject&body=message%20goes%20here";
but the issue with this approach is we can't share text as a hyperlink.
Other way is genrating eml files from C#,but that is not acceptable way since user has to download en eml file and then open it.
Is there any way to pass an hyperlink in mail body in any mail client on different devices?