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

NAME

Build Status codecov

Email::Folder::Search

DESCRIPTION

Search email from mailbox file. This module is mainly to test that the emails are received or not.

SYNOPSIS

use Email::Folder::Search;
my $folder = Email::Folder::Search->new('/var/spool/mbox');
my %msg = $folder->get_email_by_address_subject(email => 'hello@test.com', subject => qr/this is a subject/);
$folder->clear();

Methods

new($folder, %options)

takes the name of a folder, and a hash of options

options:

search(email => $email, subject => qr/the subject/);

get emails with receiver address and subject(regexp). Return an array of messages which are hashref.

my $msgs = search(email => 'hello@test.com', subject => qr/this is a subject/);

clear

clear the content of mailbox

init

init Email folder for test

SEE ALSO

Email::Folder