별칭 관리

다른 주소에서 보내기 별칭은 계정에서 전송할 수 있는 이메일 주소를 나타냅니다. 메일을 보낼 때 사용합니다. 계정마다 항상 하나 이상의 별칭을 가지고 있으므로 계정의 기본 이메일 주소입니다.

다음으로 보내기 별칭은 '다른 주소에서 메일 보내기' 기능을 있습니다.

별칭은 계정의 서명을 관리하는 데도 사용됩니다. 기본 이해 이메일 서명을 변경하려면 의 메일 전송 별칭이 필요합니다. 위의 동영상은 전송할 다른 이메일 주소를 순환하고 서명이 필요합니다.

Kubernetes에서 만들기, 목록, get, 업데이트, 또는 별칭을 삭제합니다. 자세한 내용은 SendAs 참조.

별칭 만들기 및 확인

서비스 계정을 생성해야 합니다. 사용할 수 없습니다. 경우에 따라 사용자는 별칭입니다.

Gmail에서 별칭에 대한 사용자 확인을 요구하는 경우 별칭이 pending 상태입니다. 확인 메일이 자동으로 대상 이메일 주소여야 합니다. 이메일 주소 소유자가 인증을 완료해야 합니다. 프로세스를 사용해야 합니다

확인이 필요하지 않은 별칭은 확인 상태가 accepted입니다.

verify 메서드를 사용하여 다음을 수행합니다. 필요한 경우 인증 요청을 다시 전송합니다.

SMTP 설정

외부 주소의 별칭은 원격 SMTP를 통해 메일을 보내야 합니다. 메일 전송 에이전트 (MSA) 별칭에 대한 SMTP MSA를 구성하려면 다음을 사용합니다. smtpMsa 필드를 사용하여 연결 세부정보를 제공합니다.

서명 관리

또한 각 별칭에 대해 이메일 서명을 구성할 수 있습니다. 예를 들어 서명이 필요합니다.

자바

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/스니펫/설정 스니펫/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()