Description Usage Arguments Value Examples
Create a friendly user interface for sending emails
1 |
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 |
a user interface for sending emails
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | if (interactive()) {
ui <- fluidPage(
mailtoR(email = "",
text = "click here to send an email"),
use_mailtoR()
)
server <- function(input, output){
}
shinyApp(ui, server)
}
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.