removeCitation: Remove E-Mail Citations

View source: R/mail.R

removeCitationR Documentation

Remove E-Mail Citations

Description

Remove citations, i.e., lines beginning with >, from an e-mail message.

Usage

## S3 method for class 'MailDocument'
removeCitation(x, ...)

Arguments

x

A mail document.

...

the argument removeQuoteHeader (default FALSE) giving a logical indicating if the quotation header (of the type “On date, author wrote:”) that proceeds the quoted message should be removed.

Author(s)

Ingo Feinerer

See Also

removeMultipart to remove non-text parts from multipart e-mail messages, and removeSignature to remove signature lines from e-mail messages.

Examples

require("tm")
newsgroup <- system.file("mails", package = "tm.plugin.mail")
news <- VCorpus(DirSource(newsgroup),
                readerControl = list(reader = readMail))
news[[8]]
removeCitation(news[[8]])
removeCitation(news[[8]], removeQuoteHeader = TRUE)

tm.plugin.mail documentation built on March 7, 2023, 6:31 p.m.