extractKeyword: Extracts email with specified keyword in the subject line

Description Usage Arguments Details Value Author(s) See Also Examples

Description

This function extracts email data with specific keyword in the subject line

Usage

1
extractKeyword(username, password, kw, nmail = -1)

Arguments

username

A character string of email address for example, "xxx@gmail.com"

password

A character string of password of the email address for example "xyz123"

kw

A character string of specific keyword that will be searched within subject line

nmail

An integer for the number of emails to extract, default is all emails (nmail=-1)

Details

Extracts emails with exact keyword kw in the subject line

Value

n_message

Number of available email in the specified folder

data

The extracted data frame with the field unique id (uid), sender (from), receiver either direct or cc'd (to), subject of mail (subj), time stamp (datetime)

Author(s)

Jaynal Abedin

See Also

extractKeywordB

Examples

1
2
3
4
5
6
7
8
## Not run: 
# To extract maximum 5 emails with the word "keyword" within subject line
dat <-extractKeyword(username="username@gmail.com",
                     password="password",
                     kw="keyword",
                     nmail=5)
 
## End(Not run)

edeR documentation built on May 1, 2019, 6:46 p.m.