# Enrich

Locate and include additional data in your emails.

## Usage

```bash
tomba enrich --target "<email>"
```

## Example

```bash
tomba enrich --target "b.mohamed@tomba.io"
tomba enrich --target "b.mohamed@tomba.io" --enrich-mobile
```

## Demo

![tomba enrich](/cli/enrich.svg)

## Slack Command

```bash
/enrich m@wordpress.org
```

## HTTP call

```bash
curl --request POST \
  --url 'http://127.0.0.1:3001/enrich' \
  --header 'Content-Type: multipart/form-data' \
  --form email=m@wordpress.org
```

```bash
curl --request POST \
  --url 'http://127.0.0.1:3001/enrich' \
  --header 'Content-Type: application/json' \
  --data '{
	"email": "m@wordpress.org"
}'
```
