'Sending email without Java in R
How to send HTML format email in R, without the need for Java?
The package mailR is no longer usable as it is dependent on Java. What are the alternate packages?
Note: The following worked well with mailR and trying to replicate the same.
send.mail(from = fromEmailAddress,
to = mailTo,
subject = subjectDetailed ,
body = bodyToSend,
html = TRUE,
smtp = list(host.name = hostname, port = 25),
send = TRUE
)
Solution 1:[1]
blastula, Microsoft365R are couple of great packages for HTML emails and also support Rmarkdown report emails
[blastula] https://github.com/rstudio/blastula
[Microsoft365R] https://github.com/Azure/Microsoft365R
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Kg211 |
