I try to create a new email on the default email client independent of the browser and OS.
For this I use the standard
window.location.href="mailto:a@b.de;b@c.de;c@d.de?subject=sub&body=body";
command.
The problem is, that I need to set multiple receipients. With outlook the multiple addresses must be seperated by a ";" while in apple mail you need to seperate them by ","
So how can I handle this? Is there any way to detect the email clients name or is there any other way to solve this problem?
Regards
Claus