Sisimai::Mail::STDIN(3pm) | User Contributed Perl Documentation | Sisimai::Mail::STDIN(3pm) |
Sisimai::Mail::STDIN - Mailbox reader
use Sisimai::Mail::STDIN; my $mailbox = Sisimai::Mail::STDIN->new(); while( my $r = $mailbox->read ) { print $r; # print data read from STDIN } $mailbox->close;
Sisimai::Mail::STDIN read email data from STDIN.
"new()" is a constructor of Sisimai::Mail::STDIN
my $mailbox = Sisimai::Mail::STDIN->new();
"path()" returns "<STDIN>"
print $mailbox->path; # "<STDIN>"
"name()" returns "<STDIN>"
print $mailbox->name; # "<STDIN>"
"size()" returns "undef"
print $mailbox->size; # undef
"offset()" returns offset position for seeking the mbox. The value of "offset" is bytes which have already read.
print $mailbox->offset; # 0
"handle()" returns file handle object (IO::Handle) of the mbox.
$mailbox->handle->close;
"read()" works as a iterator for reading each email in the mbox.
my $mailbox = Sisimai::Mail->new(); while( my $r = $mailbox->read ) { print $r; # print data read from STDIN }
azumakuniyuki
Copyright (C) 2014-2016,2018 azumakuniyuki, All rights reserved.
This software is distributed under The BSD 2-Clause License.
2018-11-15 | perl v5.28.0 |