mailR icon indicating copy to clipboard operation
mailR copied to clipboard

cant send email with images embedded in HTML

Open BayesyBrad opened this issue 9 years ago • 4 comments

the workaround is fine, but goodness would this be a nice feature.

BayesyBrad avatar Dec 29 '15 17:12 BayesyBrad

Indeed... I have not discovered any easy way to fix this yet.

rpremraj avatar Jan 07 '16 09:01 rpremraj

I just tried using the workaround with the latest version of rmarkdown, and it's throwing an error telling me to use rmarkdown::render instead of knitr::knit2html. However, when I try the workaround using render, it's not working for me. Can you post an updated workaround using render? Thanks!

SeeNewt avatar Feb 10 '17 18:02 SeeNewt

same here

statquant avatar Oct 20 '17 21:10 statquant

@SeeNewt

First off, create the HTML file from the R terminal (the important thing here is that options does not include "base64_images"

To turn off base64 encoding, you may use the option self_contained: no in the YAML metadata, e.g.

---
output: 
  html_document: 
    self_contained: no
---

Reference

roududu avatar Dec 08 '17 06:12 roududu