Search code examples
htmlemailmailto

Mailto with multiple cc addresses


I would like to know how to include multiple email addresses in mailto link. I am trying this:

<a href="mailto:[email protected]?subject=[Help]%20Base Leisure&[email protected],[email protected]">Contact Email</a>

But it is not working. Any idea of how to do it?


Solution

  • You need a semi-colon as the separator.

    <a href="mailto:[email protected]?subject=[Help]%20Base Leisure&[email protected];[email protected]">Contact Email</a>

    Some e-mail clients (e.g. Android's GMail) won't allow mailto: links to duplicate the same e-mail address in both To: and Cc: fields.