Bounces
Query and Delete the available Bounces in SendGrid.
テーブル固有の情報
Select
このテーブルからデータを取得する期間を指定する必要があります。指定しない場合は、過去120日間のデフォルト期間が適用されます。CreatedAt カラムは、>、<、=、<=、および>= 演算子をサポートします。
SELECT * FROM Bounces WHERE CreatedAt > '2016-01-01' AND CreatedAt < '2016-01-30'
Delete
Email を指定することでBounces から削除できます。
DELETE FROM Bounces WHERE Email = '[email protected]'
Columns
Name | Type | ReadOnly | References | Description |
CreatedAt | Datetime | True |
The time the bounce was created. | |
Reason | String | False |
The reason for the bounce. | |
Email [KEY] | String | False |
The email that bounced. | |
Status | String | False |
The enhanced SMTP bounce response. |