open email client through javascript

user1765876 picture user1765876 · Apr 8, 2014 · Viewed 15.7k times · Source

is there anyway through which I can open more than one email client, (on a single click) in java script, I know how to use mailto but don't know how to open multiple clients this code opens the client on each reload.

window.location.href = "mailto:[email protected]?subject=Subject&body=message%20goes%20here";

Any help in this regard Thanks

Answer

presidentnickson picture presidentnickson · Apr 8, 2014

If you want it to load the mail client on a click rather than every time the page refreshes, you want it attached to a click event, something like this :

<button class="button">Open Email</button>

Using jQuery :

$(document).ready(function(){
    $('.button').on('click',function(){
       window.location.href = "mailto:[email protected]?subject=Subject&body=message%20goes%20here"; 
    });
});

Update

If you want it to load multiple instances of the client, just duplicate the window.location.href :

$(document).ready(function(){
    $('.button').on('click',function(){
       window.location.href = "mailto:[email protected]?subject=Subject&body=message%20goes%20here";
       window.location.href = "mailto:[email protected]?subject=Subject2&body=message%20goes%20here";
    });
});