Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

javascript client side email

var addresses = "";//between the speech mark goes the receptient. Seperate addresses with a ;
var body = ""//write the message text between the speech marks or put a variable in the place of the speech marks
var subject = ""//between the speech marks goes the subject of the message
var href = "mailto:" + addresses + "?"
         + "subject=" + subject + "&"
         + "body=" + body;
var wndMail;
wndMail = window.open(href, "_blank", "scrollbars=yes,resizable=yes,width=10,height=10");
if(wndMail)
{
    wndMail.close();    
}
Comment

PREVIOUS NEXT
Code Example
Javascript :: Generar números aleatorios en Javascript entre un mínimo y un máximo 
Javascript :: discord.js change role permissions 
Javascript :: change background color js tinymce 
Javascript :: js create element with attributes 
Javascript :: custom hook for unique items in react 
Javascript :: CSS overflow table row positioning 
Javascript :: javascript remove junk element from array 
Javascript :: divide string in lines react native max width 
Javascript :: jqiery bpopup append 
Javascript :: country name based on browser 
Javascript :: buffering_seeking_time_ranges 
Javascript :: if text is in curly braces replace to div site:stackoverflow.com 
Javascript :: how to pass information to a type=hidden from a function in javascript 
Javascript :: Entendendo Package Json e instalando o Express 
Javascript :: how to make a discord js bot get its own message id 
Javascript :: nextjs scheduler 
Javascript :: set select2 value from local storage 
Javascript :: read data from store i ngrxstore 
Javascript :: how to ask for leave in js 
Javascript :: scalling data 1 to 100 in js 
Javascript :: grapql file upload 
Javascript :: remove duplicates by id 
Javascript :: javascript map shorthand 
Javascript :: popover not working when next page datatable 
Javascript :: javaascript localStorage get number, not string 
Javascript :: how to get json data from url python flask get column 
Javascript :: hash decrypt md5 
Javascript :: import js with vite ts 
Javascript :: react modal scroll 2 overlapping components 
Javascript :: scriptable alert 
ADD CONTENT
Topic
Content
Source link
Name
6+5 =