• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

lib/CGI/Untaint/H29-Oct-2001-6628

t/H29-Oct-2001-3022

ChangesH A D29-Oct-2001344 149

MANIFESTH A D26-Oct-200174 76

Makefile.PLH A D29-Oct-2001378 1411

READMEH A D29-Oct-2001612 2516

README

1NAME
2    CGI::Untaint::email - validate an email address
3
4SYNOPSIS
5      use CGI::Untaint;
6      my $handler = CGI::Untaint->new($q->Vars);
7
8      my $email = $handler->extract(-as_email => 'emailaddress');
9
10DESCRIPTION
11    CGI::Untaint::email input handler verifies that it is a valid RFC2822
12    mailbox format.
13
14    The resulting value will be a Mail::Address instance.
15
16AUTHOR
17    Tatsuhiko Miyagawa <miyagawa@bulknews.net>
18
19    This library is free software; you can redistribute it and/or modify it
20    under the same terms as Perl itself.
21
22SEE ALSO
23    the CGI::Untaint manpage, the Email::Valid manpage
24
25