Accountmaker Docs
Types

Email Identity

Approved sender address for transactional email.

email identity sender

Email Identity

An Email Identity is an approved sender address for an account. Identities let you control which From addresses are allowed when sending email.

Schema

interface EmailIdentity {
  id: string; // "emi_..." - Unique identifier
  account_id: string; // Owning account
  email: string; // Sender email address
  name: string | null; // Optional display name
}

Properties

PropertyTypeDescription
idstringKSUID with emi_ prefix
account_idstringAccount that owns identity
emailstringSender email address
namestring?Optional display name

Example

{
  "id": "emi_2kHfPZcN9xW4mE8RtY7vB",
  "account_id": "acc_1jGePYbM8wV3lD7QsX6uA",
  "email": "billing@example.com",
  "name": "Acme Billing"
}