showing results for - "javascript client side email"
Isabell
29 Nov 2019
1var addresses = "";//between the speech mark goes the receptient. Seperate addresses with a ;
2var body = ""//write the message text between the speech marks or put a variable in the place of the speech marks
3var subject = ""//between the speech marks goes the subject of the message
4var href = "mailto:" + addresses + "?"
5         + "subject=" + subject + "&"
6         + "body=" + body;
7var wndMail;
8wndMail = window.open(href, "_blank", "scrollbars=yes,resizable=yes,width=10,height=10");
9if(wndMail)
10{
11    wndMail.close();    
12}
13