The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Gmail::Mailbox::Validate - Find out if the username has a valid gmail mailbox

VERSION

Version 0.01

SYNOPSIS

It's quite simple to use:

    use Gmail::Mailbox::Validate;

    my $v = Gmail::Mailbox::Validate->new();
    print "mailbox exists" if $v->validate($username);
    

Or run via command line:

    $ perl -MGmail::Mailbox::Validate -le 'print "mailbox exists" if Gmail::Mailbox::Validate->new()->validate("mytest")'

SUBROUTINES/METHODS

new

Initialize the object.

validate

Validate the mailbox for username provided.

AUTHOR

Yonghua Peng, <pyh at cpan.org>

BUGS

Please report any bugs or feature requests to bug-gmail-mailbox-validate at rt.cpan.org, or through the web interface at https://rt.cpan.org/NoAuth/ReportBug.html?Queue=Gmail-Mailbox-Validate. 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 Gmail::Mailbox::Validate

You can also look for information at:

ACKNOWLEDGEMENTS

LICENSE AND COPYRIGHT

This software is Copyright (c) 2019 by Yonghua Peng.

This is free software, licensed under:

  The Artistic License 2.0 (GPL Compatible)