I am new to java coding. I have an application thats can send mails, implemented in Java. I want to put a HTML link inside the mail, but when I put a html link, it shows an error saying ; is missing even though everything is correct.
String msgbody = "This is a reminder mail";
String link = "<a href="http://abcd.efg.com" target="_blank">http://abcd.efg.com</a>";
msgbody = msgbody + link;
Is there anything wrong if I use a string like this?