Learn R Programming

edeR (version 1.0.0)

extractKeywordB: Extracts email with specified keyword in the email body text

Description

This function extracts email data with specific keyword in the body message

Usage

extractKeywordB(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)

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)

Details

Extracts emails matching the exact keyword kw in the body message

See Also

extractKeyword

Examples

Run this code
## Not run: 
# # To extract maximum 5 emails with the word "keyword" within body message
# dat <-extractKeywordB(username="username@gmail.com",
#                       password="password",
#                       kw="keyword",
#                       nmail=5)
#  ## End(Not run)

Run the code above in your browser using DataLab