Add getDefaultEmailProvider().

This commit is contained in:
Yang Luo
2021-05-15 10:13:12 +08:00
parent fb9f18af2c
commit 162c7261a3
4 changed files with 36 additions and 32 deletions

View File

@ -14,18 +14,20 @@
package util
import "regexp"
import (
"net/mail"
"regexp"
)
var reEmail *regexp.Regexp
var rePhoneCn *regexp.Regexp
func init() {
reEmail, _ = regexp.Compile(`^[0-9a-z][_.0-9a-z-]{0,31}@([0-9a-z][0-9a-z-]{0,30}[0-9a-z]\.){1,4}[a-z]{2,4}$`)
rePhoneCn, _ = regexp.Compile("^((13[0-9])|(14[5,7])|(15[0-3,5-9])|(17[0,3,5-8])|(18[0-9])|166|191|198|199|(147))\\d{8}$")
}
func IsEmailValid(email string) bool {
return reEmail.MatchString(email)
_, err := mail.ParseAddress(email)
return err == nil
}
func IsPhoneCnValid(phone string) bool {