2018-07-12 09:49:26 +01:00
2018-04-04 14:49:27 +01:00
2018-04-04 14:49:27 +01:00
2018-04-04 11:45:47 +01:00
2018-04-04 14:49:27 +01:00

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?
    }
}
Description
Email checker is package with a collection of different methods of checking email addresses.
Readme MIT 58 KiB
Languages
Go 100%