จัดการนามแฝงและลายเซ็นด้วย Gmail API

เอกสารนี้จะอธิบายวิธีกำหนดค่าอีเมลแทนและลายเซ็นอีเมลใน Gmail API

อีเมลแทนสำหรับส่งเป็นตัวแทนของอีเมลที่บัญชีใช้ส่งอีเมลได้ แต่ละบัญชีจะมีนามแฝงอย่างน้อย 1 รายการเสมอ ซึ่งแสดงถึงอีเมลหลักของบัญชี

ชื่อแทนสำหรับส่งในนามจะสอดคล้องกับฟีเจอร์"ส่งอีเมล ในชื่อ" ใน อินเทอร์เฟซเว็บของ Gmail

นอกจากนี้ คุณยังใช้ชื่อแทนเพื่อจัดการลายเซ็นสำหรับบัญชีได้ด้วย คุณต้องมีความเข้าใจพื้นฐานเกี่ยวกับอีเมลแทนสำหรับส่งเพื่อเปลี่ยนลายเซ็นอีเมล

ดูข้อมูลเกี่ยวกับวิธีสร้าง แสดง รับ อัปเดต หรือลบ นามแฝงได้ที่แหล่งข้อมูล settings.sendAs

สร้างและยืนยันอีเมลแทน

คุณต้องสร้าง ชื่อแทนก่อนจึงจะใช้ได้ ในบางกรณี ผู้ใช้ต้องยืนยันการเป็นเจ้าของอีเมลแทนด้วย

หาก Gmail กำหนดให้ผู้ใช้ต้องยืนยันตัวตนสำหรับอีเมลแทน API จะแสดงอีเมลแทนที่มีVerificationStatus เป็น pending Gmail จะส่งข้อความยืนยันไปยัง อีเมลเป้าหมายโดยอัตโนมัติ เจ้าของอีเมลต้องทํา กระบวนการยืนยันให้เสร็จสมบูรณ์ก่อนจึงจะใช้อีเมลแทนได้

อีเมลแทนที่ไม่มีการยืนยันจะมีสถานะการยืนยันเป็น accepted

ใช้เมธอด settings.sendAs.verify เพื่อส่งคำขอรับการยืนยันอีกครั้งหากจำเป็น

การตั้งค่า SMTP

นามแฝงสำหรับที่อยู่ภายนอกควรส่งอีเมลผ่านตัวแทนการส่งอีเมล (MSA) ของ SMTP ระยะไกล หากต้องการกำหนดค่า SMTP MSA สำหรับอีเมลแทน ให้ใช้ฟิลด์ smtpMsa เพื่อระบุรายละเอียดการเชื่อมต่อ

จัดการลายเซ็น

นอกจากนี้ คุณยังกำหนดค่าลายเซ็นอีเมลสำหรับแต่ละนามแฝงได้ด้วย ตัวอย่างโค้ดต่อไปนี้ แสดงวิธีตั้งค่าลายเซ็นสำหรับอีเมลหลักของผู้ใช้

Java

gmail/snippets/src/main/java/UpdateSignature.java
import com.google.api.client.googleapis.json.GoogleJsonError;
import com.google.api.client.googleapis.json.GoogleJsonResponseException;
import com.google.api.client.http.HttpRequestInitializer;
import com.google.api.client.http.javanet.NetHttpTransport;
import com.google.api.client.json.gson.GsonFactory;
import com.google.api.services.gmail.Gmail;
import com.google.api.services.gmail.GmailScopes;
import com.google.api.services.gmail.model.ListSendAsResponse;
import com.google.api.services.gmail.model.SendAs;
import com.google.auth.http.HttpCredentialsAdapter;
import com.google.auth.oauth2.GoogleCredentials;
import java.io.IOException;

/* Class to demonstrate the use of Gmail Update Signature API */
public class UpdateSignature {
  /**
   * Update the gmail signature.
   *
   * @return the updated signature id , {@code null} otherwise.
   * @throws IOException - if service account credentials file not found.
   */
  public static String updateGmailSignature() throws IOException {
        /* Load pre-authorized user credentials from the environment.
           TODO(developer) - See https://developers.google.com/identity for
            guides on implementing OAuth2 for your application. */
    GoogleCredentials credentials = GoogleCredentials.getApplicationDefault()
        .createScoped(GmailScopes.GMAIL_SETTINGS_BASIC);
    HttpRequestInitializer requestInitializer = new HttpCredentialsAdapter(credentials);

    // Create the gmail API client
    Gmail service = new Gmail.Builder(new NetHttpTransport(),
        GsonFactory.getDefaultInstance(),
        requestInitializer)
        .setApplicationName("Gmail samples")
        .build();

    try {
      SendAs primaryAlias = null;
      ListSendAsResponse aliases = service.users().settings().sendAs().list("me").execute();
      for (SendAs alias : aliases.getSendAs()) {
        if (alias.getIsPrimary()) {
          primaryAlias = alias;
          break;
        }
      }
      // Updating a new signature
      SendAs aliasSettings = new SendAs().setSignature("Automated Signature");
      SendAs result = service.users().settings().sendAs().patch(
              "me",
              primaryAlias.getSendAsEmail(),
              aliasSettings)
          .execute();
      //Prints the updated signature
      System.out.println("Updated signature - " + result.getSignature());
      return result.getSignature();
    } catch (GoogleJsonResponseException e) {
      // TODO(developer) - handle error appropriately
      GoogleJsonError error = e.getDetails();
      if (error.getCode() == 403) {
        System.err.println("Unable to update signature: " + e.getDetails());
      } else {
        throw e;
      }
    }
    return null;
  }
}

Python

gmail/snippet/settings snippets/update_signature.py
import google.auth
from googleapiclient.discovery import build
from googleapiclient.errors import HttpError


def update_signature():
  """Create and update signature in gmail.
  Returns:Draft object, including updated signature.

  Load pre-authorized user credentials from the environment.
  TODO(developer) - See https://developers.google.com/identity
  for guides on implementing OAuth2 for the application.
  """
  creds, _ = google.auth.default()

  try:
    # create gmail api client
    service = build("gmail", "v1", credentials=creds)

    primary_alias = None

    # pylint: disable=E1101
    aliases = service.users().settings().sendAs().list(userId="me").execute()
    for alias in aliases.get("sendAs"):
      if alias.get("isPrimary"):
        primary_alias = alias
        break

    send_as_configuration = {
        "displayName": primary_alias.get("sendAsEmail"),
        "signature": "Automated Signature",
    }

    # pylint: disable=E1101
    result = (
        service.users()
        .settings()
        .sendAs()
        .patch(
            userId="me",
            sendAsEmail=primary_alias.get("sendAsEmail"),
            body=send_as_configuration,
        )
        .execute()
    )
    print(f'Updated signature for: {result.get("displayName")}')

  except HttpError as error:
    print(f"An error occurred: {error}")
    result = None

  return result.get("signature")


if __name__ == "__main__":
  update_signature()