> For the complete CircleCI developer hub index, see [llms.txt](https://circleci.com/developer/llms.txt)

# cinotify/email

Zero-congifuration email notifications


## Commands

### send

This command sends an email.


| Parameter | Type | Default | Description |
|---|---|---|---|
| `body` | string |  | Email body |
| `subject` | string |  | Email subject |
| `to` | string |  | Email recipient |

## Jobs

### send

Send an email notification.


| Parameter | Type | Default | Description |
|---|---|---|---|
| `body` | string |  | Email body |
| `subject` | string |  | Email subject |
| `to` | string |  | Email recipient |

## Executors

### default

This is a sample executor using Docker and Node.


| Parameter | Type | Default | Description |
|---|---|---|---|
| `tag` | string | lts | Pick a specific cimg/node image variant: https://hub.docker.com/r/cimg/node/tags
 |

## Examples

### example

Send an email from a job.


```yaml
version: '2.1'
orbs:
  email: cinotify/email@1.2.3
workflows:
  example-workflow:
    jobs:
      - email/send:
          body: Configure this notification at https://www.cinotify.cc/
          subject: CircleCI job started
          to: example@example.com
```