Emailing to multiple recipients with html Mailto: not working

If you need to email more than one (but not hundreds), the correct form should not have spaces but should have semicolons (especially if the users will likely use Outlook).

<a href="https://stackoverflow.com/questions/9278363/mailto:[email protected];[email protected];[email protected]">Contact us</a>

If you want to automatically include a subject line add “?subject=This is the subject”

<a href="https://stackoverflow.com/questions/9278363/mailto:[email protected];[email protected];[email protected]?subject=Webpage contact">Contact us</a>

Leave a Comment