Hi!
I am trying to replicate the Blastula email example here.
However, when I print message
, this is what I get:
Hi Jim, The fiscal quarter closes next week. Here are the \ the sales rep numbers.\ {formatted_table} <br /> Cheers,<br /> EVP of Sales
It appears to be rending the compose_email
object as a simple string. This is the case when I actually send the email in addition to just printing it.
This is happening for everything I try to do in blastula. Here's a simple example:
library(blastula)
print_this <- "Substitute this text"
compose_email(body = "{print_this}")
I am using R 3.6.3, Blastula 0.3.1 and Windows 10.