Updates
  • Starting New Weekday Batch for Full Stack Java Development on 15 September 2025 @ 02:00 PM to 04:00 PM
  • Starting New Weekday Batch for MERN Stack Development on 29 September 2025 @ 04:00 PM to 06:00 PM
Join Course

Email linking

• In HTML, you can create an email link to allow users to send emails directly by clicking on the link.
• To create an email link, use the anchor tag <a> and set the href attribute to the email address preceded by mailto:. For example: <a href="mailto:example@example.com">Send Email</a>.
• When users click on the link, it will open their default email client with the recipient's email address pre-filled.
• You can also specify additional email parameters, like subject and body, by adding them after the email address. For example: <a href="mailto:example@example.com?subject=Hello&body=Hi there,">Send Email</a>.
• Email links are useful for providing a quick and easy way for users to contact you or share information through email.

            
<!DOCTYPE html>
<html>
   <head>
      <title>Email Linking</title>
   </head>
   <body>
      <h1>Email linking</h1>
      <p>Click on the link to send mail</p>
      <ul>
         <li><a href="mailto:info@jtcindia.org">Send Email</a></li>
      </ul>
   </body>
</html>