HI WELCOME TO SIRIS

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:mail@way2tutorial.com?cc=xyz@mail.com&bcc=abc@mail.com&subject=Feedback&body=Message">Click Here </a>
    for Feedback
  </p>
</body>
</html>