Files
email-checker/README.md
2018-04-04 14:49:27 +01:00

339 B

email-checker

Email checker is package with a collection of different methods of checking email addresses.

package main

import "github.com/lukerodham/email-checker"

func main() {
    is, err := checker.IsGeneric("example@gmail.com")
    if err != nil {
        panic(err)
    }

    if is {
        // do something?
    }
}