Create electronic mail documents.
MailDocument(x,
author = character(),
datetimestamp = as.POSIXlt(Sys.time(), tz = "GMT"),
description = character(),
header = character(),
heading = character(),
id = character(),
language = character(),
origin = character(),
...,
meta = NULL)
An object inheriting from MailDocument
,
A character giving the text content.
a character or an object of class person
giving the author names.
an object of class POSIXt
or a
character string giving the creation date/time information. If a
character string, exactly one of the ISO 8601 formats
defined by https://www.w3.org/TR/NOTE-datetime should be used.
See parse_ISO_8601_datetime
in package NLP
for processing such date/time information.
a character giving a description.
a character giving the mail header.
a character giving the title or a short heading.
a character giving a unique identifier.
a character giving the language (preferably as IETF language tags, see language in package NLP).
a character giving information on the source and origin.
user-defined document metadata tag-value pairs.
a named list or NULL
(default) giving all
metadata. If set, all other metadata arguments are ignored.
Ingo Feinerer