How to send email form <a> href attribute in HTML

1 Answer

0 votes
<!DOCTYPE html>
<html>
<head>
</head>
<body>

<a href="mailto:developer@emailserver.com?subject=javascript
                                         &body=A complex web application?">Send Email</a>
 
</body>
</html>

 



answered Jun 26, 2017 by avibootz
...