Example code:
library(mailR)
path='/Users/me/Downloads/file.xlsx'
send.mail(from = sender,
to = recipients,
subject = 'email with hyperlink',
body = c(path),
html = FALSE,
inline = FALSE,
smtp = list(host.name = a, port = b,
user.name = c,
passwd = d, ssl = TRUE),
authenticate = TRUE,
send = TRUE)
Is it possible to display the path as a hyperlink in the body of the email?