Reputation: 422
I am using RMarkdown to generate html files weekly for reports I am making. I would like to be able to send the emails using Blastula incorporating the html file.
Currently, I can create an email object like the following:
email <- compose_email(body = md("Here is your report")) %>%
add_attachment(myHTMLFile)
but I'd like to incorporate the html file within the body of the email. Is that possible?
Upvotes: 1
Views: 827