> 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: Email Transmission V1

# Type: Email Transmission Object

# Link: https://dev.wix.com/docs/api-reference/business-management/marketing/emails/email-transmission-v1/email-transmission-object.md

## Description: An email transmission represents a single email send request,
including its recipients, HTML content, sender information, type, and delivery status.
Creating an email transmission triggers the email to be sent asynchronously to all specified recipients.

## Schema:

```json
 Type: Email Transmission Object | type: EmailTransmission
 Description: An email transmission represents a single email send request,
including its recipients, HTML content, sender information, type, and delivery status.
Creating an email transmission triggers the email to be sent asynchronously to all specified recipients.
       - name: id  | type: string | description: Email transmission ID.
       - name: createdDate  | type: string | description: Date and time the email transmission was created.
           - name: seconds  | type: string | description: 
           - name: nanos  | type: number | description: 
       - name: updatedDate  | type: string | description: Date and time the email transmission was last updated.
       - name: revision  | type: string | description: Revision number, which increments by 1 each time the email transmission is updated.
           - name: value  | type: string | description: 
       - name: emailSubject  | type: string | description: Subject line of the email.  Default: None (email is sent without a subject line).
           - name: value  | type: string | description: 
       - name: emailHtmlContent  | type: string | description: Full HTML content of the email.  Not returned in `queryEmailTransmissions`. Use `getEmailTransmission` to retrieve the HTML content of a specific transmission.  Stored for 30 days after the transmission is created. After that, this field returns `"<expired>"`.
       - name: metadata  | type: object | description: Custom key-value pairs attached to the transmission to identify the context in which the email was sent. These values are passed to the email service provider and included in domain event payloads. Keys and values support alphanumeric characters only (letters and numbers, no spaces or special characters).  Default: `{}`
       - name: senderName  | type: string | description: Display name shown as the sender.  Default: None (no display name is set).
       - name: senderEmailAddress  | type: string | description: Sender email address. Must be verified using the Sender Emails API before use.  If the provided address can't be used as a FROM address (for example, addresses from free email providers such as gmail.com), the email is sent from `no-reply@wixsitemail.com` and the provided address is automatically used as the reply-to address instead.  Default: `no-reply@wixsitemail.com`
       - name: replyTo  | type: Recipient | description: Recipient that receives replies to this email. When a recipient replies, the reply is directed to this address instead of the sender address.  Default: When `senderEmailAddress` is provided and the email is sent from the Wix shared sender address, replies are automatically directed to `senderEmailAddress`.
           - name: name  | type: string | description: Display name of the recipient.
           - name: failureReason  | type: string | description: Reason why the email couldn't be delivered to this recipient. `NONE` means the email was successfully sent.  Returned once the transmission reaches `PROCESSED` status.
               enum: NONE, RECIPIENT_NOT_FOUND, EMAIL_ADDRESS_MISSING, EMAIL_ADDRESS_INVALID, EMAIL_ADDRESS_BOUNCED, MARKETING_CONSENT_NOT_GIVEN, NOT_SITE_COLLABORATOR
       - name: toRecipients  | type: Array<Recipient> | description: List of recipients the email is sent to.
       - name: type  | type: string | description: Email type.
           enum: TRANSACTIONAL, MARKETING
       - name: status  | type: string | description: Current status of the email transmission.
           enum: ACCEPTED, IN_PROGRESS, PROCESSED, REJECTED

```