Otomasyon hızlı başlangıç kılavuzu

Google Dokümanlar dokümanı oluşturan ve bu dokümanın 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 önkoşullara ihtiyacınız vardır:

  • Google Hesabı (Google Workspace hesapları için yönetici onayı gerekebilir).
  • İnternet erişimi olan bir web tarayıcısı.

Komut dosyasını ayarlayın

Otomasyonu oluşturmak için aşağıdaki adımları uygulayın:

  1. Apps Komut Dosyası düzenleyiciyi açmak için script.google.com adresine gidin. script.google.com sayfasını ilk kez ziyaret ediyorsanız Kontrol Panelini Görüntüle'yi tıklayın.
  2. Yeni proje'yi tıklayın.
  3. Komut dosyası düzenleyicideki tüm kodları silin ve aşağıdaki kodu yapıştırın.

    templates/standalone/helloWorld.gs
    /**
     * 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);
      }
    }
  4. Kaydet'i Kaydet simgesi tıklayın.

  5. Adsız proje'yi tıklayın.

  6. Komut dosyanız 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:

  1. Run'ı (Çalıştır) tıklayın.
  2. İstendiğinde komut dosyasını yetkilendirin. OAuth izin ekranında Bu uygulama doğrulanmadı uyarısı gösteriliyorsa Gelişmiş'i seçerek devam edin > {Project Name} adlı projeye git (güvenli değil).

  3. Komut dosyası yürütme tamamlandığında, Gmail gelen kutunuzda e-postanın olup olmadığını kontrol edin.

  4. E-postayı açın ve oluşturduğunuz dokümanı açmak için bağlantıyı tıklayın.

Sonraki adımlar