Sends email. This assumes the program sendmail is installed.

sendmail(from, to, subject, body)

Arguments

from

the sender of the mail message

to

the receipient of the mail message

subject

the subject of the mail message

body

the body of the mail message

Value

nothing

Examples

# NOT RUN {
sendmail('bob@example.com', 'joe@example.com', 'Hi', 'This is R.')
# }