Email Address Validation
Address
x <- Address$new("[email protected]")
x$host$host_name
#> [1] "example.com"
x$local$local
#> [1] "user+tag"
x$valid()
#> [1] TRUE
x$fail()
#> NULL
x <- Address$new("user1")
x$valid()
#> [1] FALSE
x$fail()
#> [1] "Invalid Domain Name"
Meta
- Please report any issues or bugs.
- License: MIT
- Get citation information for
addressable
in R doingcitation(package = 'addressable')
- Please note that this project is released with a Contributor Code of Conduct. By participating in this project you agree to abide by its terms.