/**
* 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);
}
}
सेव करें पर क्लिक करें.
बिना टाइटल वाला प्रोजेक्ट पर क्लिक करें.
अपनी स्क्रिप्ट का नाम डालें और नाम बदलें पर क्लिक करें.
स्क्रिप्ट चलाएं
स्क्रिप्ट चलाने के लिए, नीचे दिया गया तरीका अपनाएं:
चलाएं पर क्लिक करें.
जब कहा जाए, तब स्क्रिप्ट को अनुमति दें.
अगर OAuth की सहमति वाली स्क्रीन पर चेतावनी दिखती है, तो इसका मतलब है कि इस ऐप्लिकेशन की पुष्टि नहीं हुई है,
बेहतर> को चुनकर जारी रखें
{Project Name} पर जाएं (असुरक्षित).
स्क्रिप्ट एक्ज़ीक्यूशन पूरा होने के बाद, अपना Gmail इनबॉक्स देखें
ईमेल के लिए.
ईमेल खोलें और जो दस्तावेज़ आपने बनाया है उसे खोलने के लिए लिंक पर क्लिक करें.
[[["समझने में आसान है","easyToUnderstand","thumb-up"],["मेरी समस्या हल हो गई","solvedMyProblem","thumb-up"],["अन्य","otherUp","thumb-up"]],[["वह जानकारी मौजूद नहीं है जो मुझे चाहिए","missingTheInformationINeed","thumb-down"],["बहुत मुश्किल है / बहुत सारे चरण हैं","tooComplicatedTooManySteps","thumb-down"],["पुराना","outOfDate","thumb-down"],["अनुवाद से जुड़ी समस्या","translationIssue","thumb-down"],["सैंपल / कोड से जुड़ी समस्या","samplesCodeIssue","thumb-down"],["अन्य","otherDown","thumb-down"]],["आखिरी बार 2024-09-03 (UTC) को अपडेट किया गया."],[[["This script automates the creation of a Google Doc and emails you a link for access."],["You'll need a Google Account and web browser to use this automation script."],["The script involves pasting provided code into the Apps Script editor and running it after authorization."],["Upon successful execution, you'll receive an email containing the link to your newly created Google Doc."],["Explore further options to extend functionalities with Google Docs, Sheets, and Slides or learn basic JavaScript."]]],[]]