/**
* Creates a Google Doc and sends an email to the current user with a link to the doc.
*/
function createAndSendDocument() {
try {
// Create a new Google Doc named 'Hello, world!'
const doc = DocumentApp.create('Hello, world!');
// Access the body of the document, then add a paragraph.
doc.getBody().appendParagraph('This document was created by Google Apps Script.');
// Get the URL of the document.
const url = doc.getUrl();
// Get the email address of the active user - that's you.
const email = Session.getActiveUser().getEmail();
// Get the name of the document to use as an email subject line.
const subject = doc.getName();
// Append a new string to the "url" variable to use as an email body.
const body = 'Link to your doc: ' + url;
// Send yourself an email with a link to the document.
GmailApp.sendEmail(email, subject, body);
} catch (err) {
// TODO (developer) - Handle exception
console.log('Failed with error %s', err.message);
}
}
Haz clic en Guardar .
Haz clic en Proyecto sin título.
Ingresa un nombre para la secuencia de comandos y haz clic en Cambiar nombre.
Ejecuta la secuencia de comandos:
Para ejecutar la secuencia de comandos, sigue estos pasos:
Haz clic en Ejecutar.
Cuando se te solicite, autoriza la secuencia de comandos.
Si la pantalla de consentimiento de OAuth muestra la advertencia Esta app no está verificada,
para continuar, selecciona Avanzado>Ve a {Project Name} (no seguro).
Cuando se complete la ejecución de la secuencia de comandos, revisa tu bandeja de entrada de Gmail.
para el correo electrónico.
Abre el correo electrónico y haz clic en el vínculo para abrir el documento que creaste.