Hi,
I am using blastula
to automatically send me reports
It mentions in the documents that I am able to send Markdown files as an email body using something like
email <- render_email('email.Rmd')
, which i have written and works really well. I was wondering is it possible to add a footer to the email while still using the Rmd. I see in docs the the following code has the footer which is basically what i want but its building the content of the email within the code.
email <-
compose_email(
body = md(
c(
"Hello,
This is a *great* picture I found when looking for sun + cloud photos:",
img_string
)
),
footer = md(
c(
"Email sent on ", date_time, "."
)
)
)
Is it possible to somehow get this into the Rmd method?
Thank you for your time