# elixir Client Library

## Installation

the package can be installed by adding `tomba` to your list of dependencies in `mix.exs`:

```elixir
def deps do
  [
    {:tomba, "~> 0.1.0"}
  ]
end
```

And fetch your project's dependencies:

```bash
mix deps.get
```

## Usage

### Domain Search

Get email addresses found on the internet.

```elixir
conf = Tomba.new("ta_xxxx", "ts_xxxx")
{:ok, result} = Tomba.domain_search(Tomba,"tomba.io")
```

### Email Finder

Find the verified email address of any professional.

```elixir
conf = Tomba.new("ta_xxxx", "ts_xxxx")
{:ok, result} = Tomba.email_finder(Tomba,"stripe.com", "fname", "lname")
```

### Email Verifier

Verify the validity of any professional email address with the most complete email checker.

```elixir
conf = Tomba.new("ta_xxxx", "ts_xxxx")
{:ok, result} = Tomba.email_verifier(Tomba,"m@wordpress.org")
```

## Examples

Sample codes under [**examples/**](https://github.com/tomba-io/elixir/tree/master/examples) folder.
