Emails
Marketo の組織のメールをクエリします。
Table Specific Information
Select
Note: All filterable columns must be specified using the '=' operator.
Retrieve a list of emails from the target instance, filterable by name.
SELECT * FROM Emails WHERE Name = 'CRUD Test'
Retrieve the email record for the given target Id.
SELECT * FROM Emails WHERE Id = 1192
Insert
To create a new Email, specify at least the Name, Template, FolderId and FolderType column.
INSERT INTO Emails (Name, Template, FolderId, FolderType) VALUES ('My Email', '1078', 2307, 'Folder')
Update
Any field that is not read-only can be updated.
UPDATE Emails SET Description = 'Testing Update' WHERE Id = 1192
Delete
To delete a Email you can specify the ID or Name field.
DELETE FROM Emails WHERE Id = 1192 DELETE FROM Emails WHERE Name in ('Test1', 'Test2')
Columns
Name | Type | ReadOnly | Filterable | Description |
Id [KEY] | Integer | True | True |
Marketo が割り当てた、メールの一意の識別子。 |
Name | String | False | True |
メール名。 |
Description | String | False |
メールの説明。 | |
Subject | String | False |
メールの件名。 | |
FromName | String | False |
差出人。 | |
FromEmail | String | False |
差出人メール。 | |
ReplyEmail | String | False |
返信先。 | |
FolderId | Integer | False |
メールが存在するフォルダのId。 | |
FolderType | String | False |
メールが存在するフォルダのタイプ。 | |
FolderName | String | False |
メールが存在するフォルダ名。 | |
Operational | Boolean | False |
メールがオペレーショナルかどうかを示します。 | |
TextOnly | Boolean | False |
メールがテキストのみかどうかを示します。 | |
PublishToMSI | Boolean | False |
メールが公開済みかどうかを示します。 | |
WebView | Boolean | False |
メールがウェブビューかどうかを示します。 | |
Status | String | False |
メールのステータス。 | |
Version | Integer | False |
メールのバージョン。 | |
AutoCopyToText | Boolean | False |
メールがテキストに自動でコピーされるかどうかを判定します。 | |
Template | Integer | False |
メールに紐付けられたテンプレート。 | |
Workspace | String | False |
メールが存在するワークスペース名。 | |
CreatedAt | Datetime | True |
メールの作成日時。 | |
UpdatedAt | Datetime | True |
メールの最終更新日時。 | |
PreHeader | String | False |
メールのプリヘッダーテキスト。 |
Pseudo-Columns
SELECT ステートメントのWHERE 句では、疑似列フィールドを使用して、データソースから返されるタプルを詳細に制御することができます。
Name | Type | Description |
EarliestUpdatedAt | Datetime |
この日付より前のメールを除外します。有効なISO-8601 文字列である必要があります。 |
LatestUpdatedAt | Datetime |
この日付より後のメールを除外します。有効なISO-8601 文字列である必要があります。 |