The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Email::Public - Quickly find if an email address is from a public email provider

VERSION

Version 0.11

SYNOPSIS

This module relies on a list of domains known to be public email providers (such as yahoo , gmail, hotmail ... ).

To include a new domain in the list, or to remove one please submit a bug at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Email-Public I'll be notified and I will review it.

Code snippet:

    use Email::Public;

    if ( Email::Public->isPublic($email) ){
      ....
    }

isPublic

Returns true if the given email address belongs to the public list.

Usage: if ( Email::Public->isPublic($email) ){ .... }

AUTHOR

Jerome Eteve <jerome at eteve.net>

BUGS

Please report any bugs or feature requests to bug-email-public at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Email-Public. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

SUPPORT

You can find documentation for this module with the perldoc command.

    perldoc Email::Public

You can also look for information at:

ACKNOWLEDGEMENTS

Many thanks to http://www.careerjet.com for the initial list.

COPYRIGHT & LICENSE

Copyright 2007 Jerome Eteve, all rights reserved.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.