I searched the web and found nothing.
On the website, there is a Input box for a E-Mail address. I would like to fill this field with an e-mail address and the send
You can do this, but not the way you expect. To POST
a form, you need to first fetch the source code for it (with Curl, or whatever your preference). For each input
on the form, you store the name
and give it a value. Then you need to send those values with their respective names to the action
url of the form
, using the method
and enctype
specified on the form.