# メール送信アクション
このアクションは、あなたのGmailアカウントからメールを送信します。各メールは個別のジョブとして処理されます。
# 入力フィールド
入力フィールド | 説明 |
---|---|
To | 1つ以上の受信者のメールアドレスをカンマで区切って入力します。 |
Subject | メールの件名を入力します。 |
Email type | メールメッセージの形式を選択します。利用可能なオプションにはText とHTML があります。 |
Message | 選択したメールタイプがText の場合はプレーンテキストを使用します。それ以外の場合はHTMLフォーマットを使用します。 |
From | あなたがメールを送信する際に使用するエイリアスのメールIDまたは名前を入力します。GmailでSettings > Accounts > Send email asに移動してエイリアスのメールIDを設定してください。このフィールドを空白のままにすると、Workatoに接続されているメールアドレスからメールが送信されます。 |
Bcc | ブラインドカーボンコピー(bcc)を送信する1つ以上のメールアドレスをカンマで区切って入力します。 |
Cc | カーボンコピー(cc)を送信する1つ以上のメールアドレスをカンマで区切って入力します。 |
Attachments | メールの添付ファイルを指定します。添付ファイルの合計サイズは25MB未満でなければなりません。 |
SEND EMAIL TO MULTIPLE ADDRESSES USING A LIST DATAPILL
To send an email to multiple email addresses using a list datapill in Gmail, complete the following steps using the pluck and join list formulas:
Set the To field to Formula mode by clicking the formula icon next to the field.
Drag the list datapill containing the email addresses into the To field.
Type .pluck("email_address").join(",")
after the list datapill. Use the field's API name to extract the email addresses instead of the label or name displayed in the datapill.
The .pluck("email_address")
function extracts the email addresses from each item in the list, and .join(",")
combines them into a single string separated by commas.
# 出力フィールド
このアクションの出力は、送信されたメールに関する情報を含むデータツリーです。詳細については、このメソッド (opens new window)を参照してください。
出力フィールド | 説明 |
---|---|
ID | メールの一意の識別子。 |
Thread ID | メールスレッドの識別子。 |
Label IDs | メールに付与されたラベルの識別子。 |
Last updated: 2025/2/6 3:08:16