HTML Mailto Link
-
HTML Link also use for create a Mailto link to a send a email to a specific E-mail address. href attributes value is set mailto link that followed to a e-mail address.
-
When click on E-Mail link, it will open E-Mail application. E-Mail link is use to send E-Mail/Review with subject, text message.
Example
<html>
<head>
</head>
<body>
<p>
<a href="mailto:[email protected][email protected][email protected]&subject=Feedback&body=Message">Click Here </a>
for Feedback
</p>
</body>
</html>