Koleksiyonlar ile düzeninizi koruyun
İçeriği tercihlerinize göre kaydedin ve kategorilere ayırın.
Google Dokümanlar belgesi oluşturan ve belgenin bağlantısını size e-postayla gönderen basit bir otomasyon oluşturup çalıştırın.
Hedefler
Komut dosyasını ayarlayın.
Komut dosyasını çalıştırın.
Ön koşullar
Bu örneği kullanmak için aşağıdaki ön koşulları karşılamanız gerekir:
Google Hesabı (Google Workspace hesapları için yönetici onayı gerekebilir).
İnternete erişimi olan bir web tarayıcısı.
Komut dosyasını ayarlama
Otomasyonu oluşturmak için aşağıdaki adımları uygulayın:
Apps Komut Dosyası düzenleyiciyi açmak için script.google.com adresine gidin. İlk kez script.google.com adresine gidiyorsanız Kontrol panelini görüntüle'yi tıklayın.
Yeni proje'yi tıklayın.
Komut dosyası düzenleyicideki tüm kodları silip aşağıdaki kodu yapıştırın.
/** * Creates a Google Doc and sends an email to the current user with a link to the doc. */functioncreateAndSendDocument(){try{// Create a new Google Doc named 'Hello, world!'constdoc=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.consturl=doc.getUrl();// Get the email address of the active user - that's you.constemail=Session.getActiveUser().getEmail();// Get the name of the document to use as an email subject line.constsubject=doc.getName();// Append a new string to the "url" variable to use as an email body.constbody='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 exceptionconsole.log('Failed with error %s',err.message);}}
Kaydet'i tıklayın.
Untitled project'i (Başlıksız proje) tıklayın.
Senaryonuz için bir ad girin ve Yeniden adlandır'ı tıklayın.
Komut dosyasını çalıştırma
Komut dosyasını çalıştırmak için aşağıdaki adımları uygulayın:
Çalıştır'ı tıklayın.
İstendiğinde komut dosyasını yetkilendirin.
OAuth kullanıcı rızası ekranında Bu uygulama doğrulanmadı uyarısı gösteriliyorsa Gelişmiş>{Proje Adı} adlı projeye git (güvenli değil)'i seçerek devam edin.
Komut dosyası yürütme işlemi tamamlandığında Gmail gelen kutunuzda e-posta olup olmadığını kontrol edin.
E-postayı açın ve oluşturduğunuz dokümanı açmak için bağlantıyı tıklayın.
[[["Anlaması kolay","easyToUnderstand","thumb-up"],["Sorunumu çözdü","solvedMyProblem","thumb-up"],["Diğer","otherUp","thumb-up"]],[["İhtiyacım olan bilgiler yok","missingTheInformationINeed","thumb-down"],["Çok karmaşık / çok fazla adım var","tooComplicatedTooManySteps","thumb-down"],["Güncel değil","outOfDate","thumb-down"],["Çeviri sorunu","translationIssue","thumb-down"],["Örnek veya kod sorunu","samplesCodeIssue","thumb-down"],["Diğer","otherDown","thumb-down"]],["Son güncelleme tarihi: 2025-08-31 UTC."],[[["\u003cp\u003eThis script automates the creation of a Google Doc and emails you a link for access.\u003c/p\u003e\n"],["\u003cp\u003eYou'll need a Google Account and web browser to use this automation script.\u003c/p\u003e\n"],["\u003cp\u003eThe script involves pasting provided code into the Apps Script editor and running it after authorization.\u003c/p\u003e\n"],["\u003cp\u003eUpon successful execution, you'll receive an email containing the link to your newly created Google Doc.\u003c/p\u003e\n"],["\u003cp\u003eExplore further options to extend functionalities with Google Docs, Sheets, and Slides or learn basic JavaScript.\u003c/p\u003e\n"]]],[],null,[]]