NAME

    Data::Validate::WithYAML::Plugin::EmailMX - Plugin to check if a mx
    exists for the given mail address

VERSION

    version 0.01

SYNOPSIS

        use Data::Validate::WithYAML::Plugin::EmailMX;
    
        my $foo = Data::Validate::WithYAML::Plugin::EmailMX->check( 'test@example.tld' );
        ...
        
        # use the plugin via Data::Validate::WithYAML
        
        use Data::Validate::WithYAML;
        
        my $email     = 'test@example.tld';
        my $validator = Data::Validate::WithYAML->new( 'test.yml' );
        print "yes" if $validator->check( 'email', $email );

    test.yml

      ---
      step1:
          email:
              plugin: EmailMX
              type: required

SUBROUTINES

 check

SEE ALSO

    Net::validMX

AUTHOR

    Renee Baecker <reneeb@cpan.org>

COPYRIGHT AND LICENSE

    This software is Copyright (c) 2020 by Renee Baecker.

    This is free software, licensed under:

      The Artistic License 2.0 (GPL Compatible)