EmailServicesFunction
Defines functions for handling inbound emails via Salesforce Email Services.
Columns
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier of the email service function. | |
| IsActive | Bool | False |
Indicates whether the email service function is currently active. | |
| FunctionName | String | False |
Name of the email service function. | |
| AuthorizedSenders | String | False |
Comma-separated list of email addresses or domains authorized to send messages to this service. | |
| IsAuthenticationRequired | Bool | False |
Indicates whether sender authentication is required for incoming emails. | |
| IsTlsRequired | Bool | False |
Indicates whether Transport Layer Security (TLS) is required for incoming email connections. | |
| AttachmentOption | String | False |
Specifies how attachments are handled for incoming emails. | |
| ApexClassId | String | False |
ApexClass.Id |
ID of the Apex class that processes the email messages. |
| OverLimitAction | String | False |
Action taken when the email rate limit is exceeded. | |
| FunctionInactiveAction | String | False |
Action taken when the email service function is inactive. | |
| AddressInactiveAction | String | False |
Action taken when the associated email address is inactive. | |
| AuthenticationFailureAction | String | False |
Action taken when an incoming email fails authentication. | |
| AuthorizationFailureAction | String | False |
Action taken when an incoming email is from an unauthorized sender. | |
| IsErrorRoutingEnabled | Bool | False |
Indicates whether error routing is enabled for failed email processing. | |
| ErrorRoutingAddress | String | False |
Email address to which error messages are routed if error routing is enabled. | |
| IsTextAttachmentsAsBinary | Bool | False |
Indicates whether text attachments are converted to binary format. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the email service function. |
| CreatedDate | Datetime | True |
Date and time when the email service function was created. | |
| LastModifiedById | String | True |
User.Id |
ID of the user who last modified the email service function. |
| SOQL | String | False |
Specifies the SOQL query to execute against the Salesforce servers. If this pseudo column is set from the WHERE clause it will take precedence over the original query. | |
| ExternalIdColumn | String | False |
Specifies the external Id column to use if performing an insert. If this value is specified, upsert will be used when the INSERT command is called. | |
| FilterScope | String | False |
Optional scope to limit the records returned from queries. This property can take one of these values: Delegated, Everything, Mine, MineAndMyGroups, My_Territory, My_Team_Territory, or Team. | |
| SystemModstamp | Datetime | True |
System-generated timestamp indicating the last modification time for the record. | |
| LastModifiedDate | Datetime | True |
Date and time when the email service function was last modified. |