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

1 Answer

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

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

 



answered Jun 26, 2017 by avibootz
...