คู่มือเริ่มใช้งาน Apps Script ฉบับย่อ

บทความนี้แสดงวิธีใช้ Apps Script เพื่อส่งอีเมลที่มีสคีมาถึงตัวเองเพื่อทดสอบมาร์กอัปอีเมล

การสร้างโปรเจ็กต์

ไปที่ script.google.com หากคุณไปที่ script.google.com เป็นครั้งแรก ระบบจะนำคุณไปยังหน้าข้อมูล คลิกเริ่มเขียนสคริปต์เพื่อไปยังเครื่องมือแก้ไขสคริปต์ ในเครื่องมือแก้ไขสคริปต์ ให้สร้างสคริปต์สำหรับโปรเจ็กต์เปล่า

แทนที่โค้ดใน Code.gs ด้วยข้อมูลต่อไปนี้:

gmail/markup/Code.gs
/**
 * Send an email with schemas in order to test email markup.
 */
function testSchemas() {
  try {
    const htmlBody = HtmlService.createHtmlOutputFromFile('mail_template').getContent();

    MailApp.sendEmail({
      to: Session.getActiveUser().getEmail(),
      subject: 'Test Email markup - ' + new Date(),
      htmlBody: htmlBody
    });
  } catch (err) {
    console.log(err.message);
  }
}

เลือกไฟล์ > ใหม่ > ไฟล์ HTML เพื่อสร้างไฟล์ HTML ใหม่ ตั้งชื่อไฟล์ mail_template ให้ตรงกับพารามิเตอร์ใน JavaScript ด้านบน แทนที่เนื้อหาของไฟล์ HTML ด้วยข้อมูลต่อไปนี้

gmail/markup/mail_template.html
<!--
 Copyright 2022 Google LLC

 Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License.
 You may obtain a copy of the License at

      http://www.apache.org/licenses/LICENSE-2.0

 Unless required by applicable law or agreed to in writing, software
 distributed under the License is distributed on an "AS IS" BASIS,
 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 See the License for the specific language governing permissions and
 limitations under the License.
-->

<html>
  <head>
    <script type="application/ld+json">
    {
      "@context": "https://schema.org",
      "@type": "EmailMessage",
      "description": "Check this out",
      "potentialAction": {
        "@type": "ViewAction",
        "target": "https://www.youtube.com/watch?v=eH8KwfdkSqU"
      }
    }
    </script>
  </head>
  <body>
    <p>
      This a test for a Go-To action in Gmail.
    </p>
  </body>
</html>

การทดสอบสคริปต์

วิธีทดสอบสคริปต์

  1. บันทึกโปรเจ็กต์
  2. เลือกแท็บสำหรับ Code.gs
  3. ตรวจสอบว่าได้เลือกฟังก์ชัน testSchemas ในเมนูแบบเลื่อนลง Select function
  4. คลิก Run ในสภาพแวดล้อมการพัฒนา Apps Script

ครั้งแรกที่คุณเรียกใช้สคริปต์ ระบบจะขอให้คุณให้สิทธิ์ จากนั้นให้เรียกใช้สคริปต์อีกครั้ง หลังจากเรียกใช้สคริปต์แล้ว ให้ตรวจสอบกล่องจดหมายเพื่อหาอีเมลที่ส่งจากตัวคุณเองซึ่งมีปุ่มการดำเนินการเพื่อไปยังส่วนที่ต้องการ ดังในภาพหน้าจอต่อไปนี้

บทแนะนำ Apps Script

สคริปต์ทํางานอย่างไร

ฟังก์ชัน testSchemas จะอ่านเนื้อหา HTML จากไฟล์ชื่อ mail_template.html และส่งเนื้อหาดังกล่าวเป็นอีเมลไปยังผู้ใช้ที่ตรวจสอบสิทธิ์แล้วในปัจจุบัน ตามที่อธิบายไว้ในการลงทะเบียนกับ Google สคีมาทั้งหมดที่คุณส่งถึงตัวเองจะแสดงใน Gmail คุณจึงใช้อีเมลที่สคริปต์ส่งมาเพื่อละเว้นข้อกำหนดการลงทะเบียนเพื่อวัตถุประสงค์ในการทดสอบได้