メールの統合

このガイドでは、Google Docs API を使用してメールへの差し込みを行う方法について説明します。

はじめに

メールへの差し込みでは、スプレッドシートまたは他のデータソースの行から値を取得して、テンプレート ドキュメントに挿入します。これにより、単一のプライマリ ドキュメント(テンプレート)を作成し、そこから多数の類似したドキュメントを生成し、マージするデータでそれぞれをカスタマイズできます。結果は、郵便やフォームレターに使用されるとは限りませんが、顧客の請求書のバッチの生成など、あらゆる目的に使用できます。

メールへの差し込みは、スプレッドシートやワード プロセッサが存在する前から存在しており、今日の多くのビジネス ワークフローに組み込まれています。次の表に示すように、データは行ごとに 1 つのレコードとして整理され、列はデータ内のフィールドを表します。

名前 住所 ゾーン
1 UrbanPq 六本木 6-10-1 西
2 パウハナ 六本木 6-10-1

このページのサンプルアプリでは、Google ドキュメント、Google スプレッドシート、Google ドライブの API を使用して、メールへの差し込みに関する詳細を抽象化し、実装上の懸念からユーザーを保護する方法を示します。この Python サンプルの詳細については、サンプルの GitHub リポジトリをご覧ください。

サンプル アプリケーション

このサンプルアプリは、プライマリ テンプレートをコピーしてから、指定されたデータソースの変数を各コピーにマージします。このサンプルアプリを試すには、まずテンプレートを設定します。

  1. ドキュメント ファイルを作成します。使用するテンプレートを選択します。
  2. 新しいファイルのドキュメント ID をメモします。詳しくは、ドキュメント ID をご覧ください。
  3. DOCS_FILE_ID 変数をドキュメント ID に設定します。
  4. 連絡先情報を、アプリが選択したデータと結合するテンプレート プレースホルダ変数に置き換えます。

こちらのレター テンプレートのサンプルには、書式なしテキストやスプレッドシートなどのソースから実際のデータと結合できるプレースホルダが含まれています。テンプレートは次のようになります。

次に、SOURCE 変数を使用して、データソースとして書式なしテキストまたはスプレッドシートを選択します。サンプルのデフォルトは書式なしテキストです。つまり、サンプルデータでは TEXT_SOURCE_DATA 変数を使用しています。スプレッドシートからデータを取り込むには、SOURCE 変数を 'sheets' に更新し、SHEETS_FILE_ID 変数を設定してサンプルシート(または独自のシート)を指すようにします。

シートの外観は次のようになります。

サンプルデータでアプリを試してから、データとユースケースに適応させます。コマンドライン アプリケーションは次のように動作します。

  • セットアップ
  • データソースからデータを取得する
  • データの各行をループする
    • テンプレートのコピーを作成する
    • コピーをデータと統合する
    • 新たに結合されたドキュメントへの出力リンク

新たに結合された文字もすべてユーザーのマイドライブに表示されます。結合された文字の例は次のようになります。

ソースコード

Python

docs/mail-merge/docs_mail_merge.py
import time

import google.auth
from googleapiclient.discovery import build
from googleapiclient.errors import HttpError

# Fill-in IDs of your Docs template & any Sheets data source
DOCS_FILE_ID = "195j9eDD3ccgjQRttHhJPymLJUCOUjs-jmwTrekvdjFE"
SHEETS_FILE_ID = "11pPEzi1vCMNbdpqaQx4N43rKmxvZlgEHE9GqpYoEsWw"

# authorization constants

SCOPES = (  # iterable or space-delimited string
    "https://www.googleapis.com/auth/drive",
    "https://www.googleapis.com/auth/documents",
    "https://www.googleapis.com/auth/spreadsheets.readonly",
)

# application constants
SOURCES = ("text", "sheets")
SOURCE = "text"  # Choose one of the data SOURCES
COLUMNS = ["to_name", "to_title", "to_company", "to_address"]
TEXT_SOURCE_DATA = (
    (
        "Ms. Lara Brown",
        "Googler",
        "Google NYC",
        "111 8th Ave\nNew York, NY  10011-5201",
    ),
    (
        "Mr. Jeff Erson",
        "Googler",
        "Google NYC",
        "76 9th Ave\nNew York, NY  10011-4962",
    ),
)

# fill-in your data to merge into document template variables
merge = {
    # sender data
    "my_name": "Ayme A. Coder",
    "my_address": "1600 Amphitheatre Pkwy\nMountain View, CA  94043-1351",
    "my_email": "http://google.com",
    "my_phone": "+1-650-253-0000",
    # - - - - - - - - - - - - - - - - - - - - - - - - - -
    # recipient data (supplied by 'text' or 'sheets' data source)
    "to_name": None,
    "to_title": None,
    "to_company": None,
    "to_address": None,
    # - - - - - - - - - - - - - - - - - - - - - - - - - -
    "date": time.strftime("%Y %B %d"),
    # - - - - - - - - - - - - - - - - - - - - - - - - - -
    "body": (
        "Google, headquartered in Mountain View, unveiled the new "
        "Android phone at the Consumer Electronics Show. CEO Sundar "
        "Pichai said in his keynote that users love their new phones."
    ),
}

creds, _ = google.auth.default()
# pylint: disable=maybe-no-member

# service endpoints to Google APIs

DRIVE = build("drive", "v2", credentials=creds)
DOCS = build("docs", "v1", credentials=creds)
SHEETS = build("sheets", "v4", credentials=creds)


def get_data(source):
  """Gets mail merge data from chosen data source."""
  try:
    if source not in {"sheets", "text"}:
      raise ValueError(
          f"ERROR: unsupported source {source}; choose from {SOURCES}"
      )
    return SAFE_DISPATCH[source]()
  except HttpError as error:
    print(f"An error occurred: {error}")
    return error


def _get_text_data():
  """(private) Returns plain text data; can alter to read from CSV file."""
  return TEXT_SOURCE_DATA


def _get_sheets_data(service=SHEETS):
  """(private) Returns data from Google Sheets source. It gets all rows of
  'Sheet1' (the default Sheet in a new spreadsheet), but drops the first
  (header) row. Use any desired data range (in standard A1 notation).
  """
  return (
      service.spreadsheets()
      .values()
      .get(spreadsheetId=SHEETS_FILE_ID, range="Sheet1")
      .execute()
      .get("values")[1:]
  )
  # skip header row


# data source dispatch table [better alternative vs. eval()]
SAFE_DISPATCH = {k: globals().get(f"_get_{k}_data") for k in SOURCES}


def _copy_template(tmpl_id, source, service):
  """(private) Copies letter template document using Drive API then
  returns file ID of (new) copy.
  """
  try:
    body = {"name": f"Merged form letter ({source})"}
    return (
        service.files()
        .copy(body=body, fileId=tmpl_id, fields="id")
        .execute()
        .get("id")
    )
  except HttpError as error:
    print(f"An error occurred: {error}")
    return error


def merge_template(tmpl_id, source, service):
  """Copies template document and merges data into newly-minted copy then
  returns its file ID.
  """
  try:
    # copy template and set context data struct for merging template values
    copy_id = _copy_template(tmpl_id, source, service)
    context = merge.iteritems() if hasattr({}, "iteritems") else merge.items()

    # "search & replace" API requests for mail merge substitutions
    reqs = [
        {
            "replaceAllText": {
                "containsText": {
                    "text": "{{%s}}" % key.upper(),  # {{VARS}} are uppercase
                    "matchCase": True,
                },
                "replaceText": value,
            }
        }
        for key, value in context
    ]

    # send requests to Docs API to do actual merge
    DOCS.documents().batchUpdate(
        body={"requests": reqs}, documentId=copy_id, fields=""
    ).execute()
    return copy_id
  except HttpError as error:
    print(f"An error occurred: {error}")
    return error


if __name__ == "__main__":
  # get row data, then loop through & process each form letter
  data = get_data(SOURCE)  # get data from data source
  for i, row in enumerate(data):
    merge.update(dict(zip(COLUMNS, row)))
    print(
        "Merged letter %d: docs.google.com/document/d/%s/edit"
        % (i + 1, merge_template(DOCS_FILE_ID, SOURCE, DRIVE))
    )

詳しくは、サンプルアプリの GitHub リポジトリにある README ファイルと完全なアプリケーションのソースコードをご覧ください。