InvalidEmails
Query and Delete invalid emails in SendGrid.
Table-Specific Information
Select
This table only supports filtering by Email. The following are the only possible SELECT queries:
SELECT * FROM InvalidEmails SELECT * FROM InvalidEmails WHERE Email = '[email protected]'
Delete
You can only delete from InvalidEmails by specifying an Email.
DELETE FROM InvalidEmails WHERE Email = '[email protected]'
Columns
| Name | Type | ReadOnly | References | Description |
| Created | Datetime | True |
The time the when the email address was added to the invalid emails list. | |
| Reason | String | False |
A reason explaining why the email address was marked as invalid.. | |
| Email [KEY] | String | False |
The email address that was marked as invalid. |
Pseudo-Columns
Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
| Name | Type | Description |
| AccountId | String |
The ID of the account. |
| SubuserUsername | String |
The username of the subuser. |