I would like to know how to include multiple email addresses in mailto link. I am trying this:
<a href="mailto:email@example.com?subject=[Help]%20Base Leisure&cc=email@example.com,email@example.com">Contact Email</a>
But it is not working. Any idea of how to do it?
You need a semi-colon as the separator:
<a href="mailto:email@example.com?subject=[Help]%20Base Leisure&cc=email@example.com;email@example.com">Contact Email</a>