email-validate-2.2.0: Validating an email address string against RFC 5322

Safe HaskellSafe
LanguageHaskell2010

Text.Email.Validate

Synopsis

Documentation

isValid :: ByteString -> Bool Source

Validates whether a particular string is an email address according to RFC5322.

validate :: ByteString -> Either String EmailAddress Source

If you want to find out *why* a particular string is not an email address, use this.

emailAddress :: ByteString -> Maybe EmailAddress Source

Smart constructor for an email address

canonicalizeEmail :: ByteString -> Maybe ByteString Source

Checks that an email is valid and returns a version of it where comments and whitespace have been removed.

unsafeEmailAddress :: ByteString -> ByteString -> EmailAddress Source

Creates an email address without validating it. You should only use this when reading data from somewhere it has already been validated (e.g. a database).

localPart :: EmailAddress -> ByteString Source

Extracts the local part of an email address.

domainPart :: EmailAddress -> ByteString Source

Extracts the domain part of an email address.

toByteString :: EmailAddress -> ByteString Source

Converts an email address back to a ByteString