Is there any way I can allow users to share the article with the HTML markdown within email?
I tried to create the link like shown below, but it just pastes the HTML code without formatting in the email client:
<a href={`mailto:email@example.com?subject='Hello from Abstract!'&body=<a href="https://google.com/">some link</a>`}>
Click to Send an Email
</a>
next-share
library also does the same:
<EmailShareButton
url={url}
subject={title}
body={'<a href="https://google.com/">some link</a>'}
>
Click to Send an Email
</EmailShareButton>