# CommonEmailParams

**Kind**: interface | **Module**: [Outlook](https://docs.interop.io/adapters/reference/javascript/outlook/index.md)

**Source**: https://docs.interop.io/adapters/reference/javascript/outlook/commonemailparams/index.html

This composite type describes the common parameters to be populated on creating a new email or local email.

## Properties

- **`attachments`** (`string[] | AttachmentParams[]`, optional)
  An array of the full paths to existing files to be attached OR an array of objects with the name and data of
  each attachment to be dynamically created and attached.
- **`bcc`** (`string | string[]`, optional)
  The blind co-recipient(s) of the email.
- **`body`** (`string`, optional)
  The body text of the email, formatted as a plain string.
- **`bodyHtml`** (`string`, optional)
  The body of the email, formatted as an HTML string.
- **`cc`** (`string | string[]`, optional)
  The co-recipient(s) of the email.
- **`cookie`** (`string`, optional)
  The cookie of the email.

## Related types

- [AttachmentParams](https://docs.interop.io/adapters/reference/javascript/outlook/attachmentparams/index.md)
