mime_part_html: Create an inline HTML MIME Part

View source: R/mime_part.R

mime_part_htmlR 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)


sendmailR documentation built on Jan. 12, 2023, 5:10 p.m.