useful function to normalize different ways email addrs may come in.
iex> email_addr("this@that") "this@that" iex> email_addr({10, "this@that"}) "this@that" iex> email_addr(%{address: "this@that"}) "this@that"