I have a problem in clicking a link to send an email with body text where '&' character is there in the text. Below is code:
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<a href = "mailto:xxx.xxx@xx.xxx.com?subject=Approval&body=AdventureWorks L&L Azure dataset">Click</a href>
</body>
</html>
If you click on the link, it will open Outlook with proper subject and mail to option, but in Body of the mail it's printing only till '&' (AdventureWorks L ), Can anyone give me a solution where entire text will come on body of the mail along with '&' sign. ? I need "AdventureWorks L&L Azure dataset" in the body of the mail which will open while clicking on the link.
Thanks in advance.