mime_part_html {sendmailR}R Documentation

Create an inline HTML MIME Part

Description

Create a MIME part from a character string containing HTML. If the string matches a filename the file is read and inserted as an inline character MIME part.

Usage

mime_part_html(x, ...)

Arguments

x

Character string, vector/list of character strings or path to html file.

...

Ignored.

Value

An S3 mime_part object.

Examples

## Not run: 
sendmail(
  from="from@example.org",
  to="to1@example.org",
  subject="inline HTML",
  msg=mime_part_html("Hello<br>World"),
  control=list(smtpServer="ASPMX.L.GOOGLE.COM")
)

sendmail(
  from="from@example.org",
  to="to1@example.org",
  subject="inline HTML",
  msg=mime_part_html("out/report.html"),
  control=list(smtpServer="ASPMX.L.GOOGLE.COM")
)

## End(Not run)


[Package sendmailR version 1.4-0 Index]