Reputation: 1
When I upload my application in shiny apps and press the button to send mail, it does not work and the application is dropped could help me[the application doesn´t work
observeEvent(input$sends,{
send.mail(from = isolate("[email protected]"),
to = c("[email protected]"),
subject=isolate("Actividades"),
html = T,
smtp = list(host.name = "smtp.office365.com", port = 587,
user.name = "[email protected]", passwd = "*************", tls = T),
authenticate =T,
send = T)
})
]1
Upvotes: 0
Views: 102