Skip to content
This repository has been archived by the owner on May 17, 2024. It is now read-only.

binary-com/perl-Email-Folder-Search

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

55 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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:

  • timeout

    The seconds that get_email_by_address_subject will wait if the email cannot be found.

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

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages