Nette\Forms\Form – Email …
Notice: This thread is very old.
- MartyIX
- Member | 217
Takeshi: Have a look at the corresponding documentation: https://doc.nette.org/en/forms
The code below should do the trick:
- redhead
- Member | 1313
From what I can see, you shouldn't use \Nette\Forms\Form, but Nette\Application\UI\Form which is the one to use in Nette application (the first one is for standalone use). Also, in Nette all the forms handling and submiting is done in the same presenter, so no action is needed. POST method is also useless (POST is default).