I've got a HTML form with a lot of input fields, which I use to populate an email. I learned today that using the GET-method will limit the size of what's posted. But from what I can tell, there is no limit when using POST. Well, there probably is since I believe that this is probably my problem. My emails aren't opening in the email client when they have reached a certain size (or if I've used too many input fields?)
The users will not be able to have a constant internet connection, and the only "reliable" method to communicate is via email. They are limited in their usage of their computer and can't runt any executable files. That's why I created a HTML file with a lot of javascript that creates the email body. Some of the users have got an email client, and if that's the case I want to open a new email with the content from the form on the HTML file.
So, is there some kind of limit of how big the body can be when sending a form with action="mailto:"?