function EnviarEmail() {
SpreadsheetApp.getActiveSheet().getRange("A14").setValue("Hello world");
//Recupero el email de la persona
var email=SpreadsheetApp.getActiveSheet().getRange("A2").getValue;
//Recupero el asunto para el email
var asunto= SpreadsheetApp.getActiveSheet().getRange("B2").getValue;
//Recupero el texto para el email
var body=SpreadsheetApp.getActiveSheet().getRange("C2").getValue;
GmailApp.sendEmail(email,asunto,body);
}