mailtoR {mailtoR} | R Documentation |
Create a friendly user interface for sending emails
Description
Create a friendly user interface for sending emails
Usage
mailtoR(email, text, subject = NULL, cc = NULL, bcc = NULL, body = NULL)
Arguments
email |
the emails of the recipients |
text |
the link text that will be displayed on the ui |
subject |
the subject of the email. Defaults to NULL |
cc |
the emails of the CC (carbon copy) recipients. Defaults to NULL |
bcc |
the emails of the BCC (blind carbon copy) recipients. Defaults to NULL |
body |
the body of the email. Defaults to NULL |
Value
a user interface for sending emails
Examples
if (interactive()) {
ui <- fluidPage(
mailtoR(email = "",
text = "click here to send an email"),
use_mailtoR()
)
server <- function(input, output){
}
shinyApp(ui, server)
}
[Package mailtoR version 0.1.0 Index]