mirror of
https://github.com/cubixle/email-checker.git
synced 2026-04-24 18:34:42 +01:00
339 B
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?
}
}