メール送信アクション

このアクションは、あなたのGmailアカウントからメールを送信します。各メールは個別のジョブとして処理されます。

入力フィールド

入力フィールド説明
To1つ以上の受信者のメールアドレスをカンマで区切って入力します。
Subjectメールの件名を入力します。
Email typeメールメッセージの形式を選択します。利用可能なオプションにはTextHTMLがあります。
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:

1

Set the To field to Formula mode by clicking the formula icon next to the field.

2

Drag the list datapill containing the email addresses into the To field.

3

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.

出力フィールド

このアクションの出力は、送信されたメールに関する情報を含むデータツリーです。詳細については、このメソッドを参照してください。

出力フィールド説明
IDメールの一意の識別子。
Thread IDメールスレッドの識別子。
Label IDsメールに付与されたラベルの識別子。

Last updated: