0

I have always wondered if this is possible in R.

On many websites, there is usually an interactive form which allows the user to send an e-mail to the owner of the website for feedback, comments, questions and suggestions:

enter image description here

Is it possible to create such a form within a Rmarkdown/Flexdashboard document?

I found links online that shows something similar :

For example - I copy and paste this code in the Rmarkdown document:

<html>
<body>

<h2> Questions? Send an e-mail! </h2>

<form action="mailto:antonoyaro_9999999999999@hotmail.com" method="post" enctype="text/plain">
Name:<br>
<input type="text" name="name"><br>
E-mail:<br>
<input type="text" name="mail"><br>
Comment:<br>
<input type="text" name="comment" size="50"><br><br>
<input type="submit" value="Send">
<input type="reset" value="Reset">
</form>

</body>
</html>

I think this partially worked - but is there a better way to do this?

Thanks!

stats_noob
  • 5,401
  • 4
  • 27
  • 83

0 Answers0