Onclick on button to send email with body and subject - HTML CSS CSS Form

HTML CSS examples for CSS Form:input button style

Description

Onclick on button to send email with body and subject

Demo Code

ResultView the demo in separate window

<html>
 <head> 
  <meta name="viewport" content="width=device-width, initial-scale=1"> 
 </head> <!-- w ww  .  j av a2 s. com-->
 <body> 
  <a href="mailto:name1@yellow.com?cc=name2@yellow.com&amp;bcc=name3@yellow.com
&amp;subject=The%20subject%20of%20the%20email
&amp;body=The%20body%20of%20the%20email"> Send mail with cc, bcc, subject and body</a>  
 </body>
</html>

Related Tutorials