A modern, fast, zero-dependency library for working with emails and performing email validation in Java.
Built for Java 8 and up.
Why JMail? • Installation • Usage • IP Validation • Contributing
JMail was built mainly because I wanted to tackle the complex problem of email validation without using Regex. Along the way, JMail became a much better choice than other Java email validation libraries (such as Apache Commons Validator or Java Mail Validation) for the following reasons:
-
JMail is more correct than other libraries. For example, both Apache Commons and Java Mail consider
first@last@iana.org
as a valid email address! It clearly is not, as it has two@
characters. JMail correctly considers this address invalid. You can see a full comparison of correctness and try it out for yourself online. -
JMail is faster than other libraries by, on average, at least 27%, thanks in part to lack of regex.
-
JMail has zero dependencies and is very lightweight.
-
JMail is modern. It is built for Java 8+, and provides many useful methods and data accessors.
Click here for a full report of the differences in correctness and speed between JMail and other libraries.
While JMail is more correct than other libraries, I cannot guarantee that it is 100% correct. Email RFCs are long and complex, and I have likely missed some specific details. Please open an issue if you find an incorrect validation result for a specific email (or even better, a pull request with a fix).
I also highly recommend that you send verification emails to user-provided email addresses. This is the only way to ensure that the email address exists and that the recipient wants that email address to be used.
Add this library as a dependency in your pom.xml
:
<dependency>
<groupId>com.sanctionco.jmail</groupId>
<artifactId>jmail</artifactId>
<version>1.0.2</version>
</dependency>
To perform standard email validation, use the static methods
available in JMail
. For example, to test validation:
String email = "test@example,com";
if (JMail.isValid(email)) {
// Work with your email string
}
Or to enforce validation, throwing an InvalidEmailException
on failure:
String email = "test@example,com";
try {
JMail.enforceValid(email);
// Work with your email string
} catch (InvalidEmailException) {
// Handle invalid email
}
JMail also provides an EmailValidator
class that allows for much more
customization of what constitutes a valid email address. You can require
additional common validation rules,
or supply your own. For example:
// In general, you should use JMail.strictValidator()
EmailValidator validator = JMail.strictValidator()
// Require that the top-level-domain is ".com"
.requireOnlyTopLevelDomains(TopLevelDomain.DOT_COM)
// Require that the local-part starts with "allowed"
.withRule(email -> email.localPart().startsWith("allowed"));
boolean valid = validator.isValid("allowed-email@test.com");
boolean invalidWithoutTld = validator.isValid("allowed@test");
boolean invalidWithoutDotCom = validator.isValid("allowed@test.net");
boolean invalidWithoutAllowed = validator.isValid("invalid@test.com");
JMail also includes an Email
object that makes working with
email addresses easier. The Email
object has the following properties:
Property getter | Description | Example using test(hello)@(world)example.one.com |
---|---|---|
localPart() | The local-part of the email address | test(hello) |
localPartWithoutComments() | The local-part of the email address without comments | test |
domain() | The domain of the email address | (world)example.one.com |
domainWithoutComments() | The domain of the email address without comments | example.one.com |
domainParts() | A list of the parts of the domain | [example, one, com] |
comments() | A list of the comments in the email address | [hello, world] |
isIpAddress() | Whether or not the domain is an IP address | false |
topLevelDomain() | The TopLevelDomain of the email address, or TopLevelDomain.OTHER if it is unknown |
TopLevelDomain.DOT_COM |
To create a new instance of Email
from a string, use the tryParse(String email)
method, either the default version or on your own EmailValidator
instance:
Optional<Email> parsed = JMail.tryParse("test@example.com");
Optional<Email> parsed = JMail.validator()
.disallowIpDomain()
.tryParse("test@example.com");
Since tryParse(String email)
returns an Optional<Email>
, you can do
some cool things, such as:
String email = JMail.tryParse("invalidEmailString")
.map(Email::toString)
.orElse("default@example.com");
JMail.tryParse("test@example.com")
.ifPresentOrElse(
email -> myEmailService.sendTo(email.toString()),
() -> log.error("Could not send email to invalid email"));
Although an email with an IP address in the domain is valid,
these email addresses are often rejected from mail servers or only
used for spam. You can require that your EmailValidator
reject all
emails with an IP address in the domain:
JMail.validator().disallowIpDomain();
Although an email address can be a local domain name with no TLD,
ICANN highly discourages dotless email addresses. You can require that
your EmailValidator
reject all emails without a TLD:
JMail.validator().requireTopLevelDomain();
You can require that your EmailValidator
reject all emails that have
a top-level domain other than the ones you specify:
JMail.validator().requireOnlyTopLevelDomains(TopLevelDomain.DOT_COM);
JMail.validator().requireOnlyTopLevelDomains(
TopLevelDomain.DOT_NET, TopLevelDomain.DOT_EDU);
Since validating email addresses requires validation of IP addresses, these IP address validation methods are exposed for your convenience!
String ipv4 = "12.34.56.78";
if (InternetProtocolAddress.isValid(ipv4)) {
// Use address
}
String ipv6 = "IPv6:2001:db8::1234:5678";
if (InternetProtocolAddress.isValid(ipv6)) {
// Use address
}
String ipv4 = "12.34.56.78";
try {
InternetProtocolAddress.enforceValid(ipv4);
} catch (InvalidAddressException e) {
// Failure
}
String ipv6 = "IPv6:2001:db8::1234:5678";
try {
InternetProtocolAddress.enforceValid(ipv6);
} catch (InvalidAddressException e) {
// Failure
}
String ipv4 = "12.34.56.78";
Optional<String> validated = InternetProtocolAddress.validate(ipv4);
// The validate() method allows for convenience such as:
String ip = InternetProtocolAddress
.validate("notvalid")
.orElse("0.0.0.0");
String ipv6 = "IPv6:2001:db8::1234:5678";
Optional<String> validated = InternetProtocolAddress.validate(ipv6);
// The validate() method allows for convenience such as:
String ip = InternetProtocolAddress
.validate("notvalid")
.orElse("IPv6:2001:db8::1234:5678");
All contributions are welcome! Open issues for bug reports or feature requests. Pull requests with fixes or enhancements are encouraged.