Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

mailto with multiple cc addresses

Tags:

html

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 ?

like image 580
pollux1er Avatar asked Oct 22 '14 14:10

pollux1er


People also ask

How do I mailto multiple email addresses?

Specify multiple recipients in the To field, separating addresses with a comma (,) or a semicolon (;). For example: mailto:[email protected],[email protected].

How do I send an email to multiple recipients CC?

Add multiple Cc recipients or Bcc recipients You can add multiple Cc and Bcc by separating them with comma. Add the recipients in a column called "cc" for Cc recipients and "bcc" for Bcc recipients. To add multiple recipients, Cc or Bcc, just separate them with comma.

How do I add multiple email addresses in HTML?

When set to true, it specifies that the user is allowed to enter more than one value/email in the email field. This property reflects the HTML multiple attribute. Tip: On submit, separate each email with a comma, like: [email protected], [email protected], [email protected] in the email field.


1 Answers

You need a semi-colon as the separator.

    <a href="mailto:[email protected]?subject=[Help]%20Base Leisure&[email protected];[email protected]">Contact Email</a>
like image 195
FJT Avatar answered Sep 23 '22 09:09

FJT