a href Attribute - Link to multiple email address with a specified subject - HTML CSS HTML Tag

HTML CSS examples for HTML Tag:a

Introduction

Spaces between words should be replaced by %20 to ensure that the browser will display the text properly.

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
<body>

<p>
This is another mailto link:
<a href="mailto:someone@example.com?cc=someoneelse@example.com&bcc=andsomeoneelse@example.com&subject=your%20Message&body=This%20is%20a%20test!" target="_top">Send mail!</a>
</p><!--from   w ww.j  av  a  2 s  .  c o m-->

</body>
</html>

Related Tutorials