gs- send mail from google form submit
/**
* bind onFormSubmit event to this function
*/
function sendMailFromSSResponse(e) {
var row = e.range.getValues();
row=row[0];//active row
Logger.log(row);
/*send mail to admin*/
var email_address = Session.getActiveUser().getEmail();
var email = row[1],
email_mess = "<strong>Ho & Ten</strong>: " +row[1] + "<br/>"
+ "<strong>SDT</strong>: "+ row[2] +"<br/>"
+ "<strong>Email</strong>: "+ row[3] + "<br/>"
+ "<strong>Khoa hoc</strong>: "+ row[4]+ "<br/>"
+ "<strong>Yeu cau</strong>: "+ row[5];
MailApp.sendEmail(email_address,email,'',{htmlBody: email_mess});
}