> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt # Resource: Sending Domains # Type: Sending Domain Object # Link: https://dev.wix.com/docs/api-reference/business-management/marketing/emails/sending-domains/sending-domain-object.md ## Description: A sending domain is a custom domain that's authenticated for sending emails from a Wix site. While it's possible to send emails without authentication, unauthenticated emails will either show the Wix domain to recipients or use the Wix domain as the **From** address with the Wix user's email as the **Reply-To** address. Authenticating a sending domain allows emails to use a custom domain in the **From** field, improving email deliverability and helping establish domain reputation for email campaigns and transactional emails. ## Schema: ```json Type: Sending Domain Object | type: SendingDomain Description: A sending domain is a custom domain that's authenticated for sending emails from a Wix site. While it's possible to send emails without authentication, unauthenticated emails will either show the Wix domain to recipients or use the Wix domain as the **From** address with the Wix user's email as the **Reply-To** address. Authenticating a sending domain allows emails to use a custom domain in the **From** field, improving email deliverability and helping establish domain reputation for email campaigns and transactional emails. - name: id | type: string | description: Sending domain ID. - name: createdDate | type: string | description: Date and time the sending domain was created. - name: seconds | type: string | description: - name: nanos | type: number | description: - name: domain | type: string | description: Domain name to authenticate for sending emails. For example, `example.com`. - name: status | type: string | description: Authentication status. Indicates whether the domain is ready for sending emails. enum: INITIALIZING, NOT_AUTHENTICATED, AUTHENTICATED - name: dnsRecords | type: Array | description: DNS records required to authenticate the domain. These records must be added to the domain's DNS configuration at the DNS provider (such as GoDaddy, Cloudflare, or Namecheap) to verify domain ownership and enable email sending. To authenticate the domain, add these records at the DNS provider and use DNS lookup tools (such as `dig` or online DNS checkers) to verify the records are visible globally. Then call [Authenticate Sending Domain](https://dev.wix.com/docs/api-reference/business-management/marketing/emails/sending-domains/authenticate-sending-domain.md). - name: hostName | type: string | description: Hostname for the DNS record. Add this as the subdomain or record name at the DNS provider. - name: value | type: string | description: Value for the DNS record. Add this as the target value at the DNS provider. - name: type | type: string | description: DNS record type. enum: CNAME ```