I want to pass a parameter into the field "name" of my Sendy form. I want to write in the URL like www.mywebsite.com/?src=works and "works" appear as the name of the subscriber. But how can I implement this? I already tried with "GET", but with no success. Thanks.
<form action="http://trackingit.in/subscribe" method="POST" accept-charset="utf-8">
<label for="name">Name</label><input type="text" name="name" id="name"> <label for="email">Email</label><input type="text" name="email" id="email"> <input type="hidden" name="list" value="(hidden)">
<input type="submit" name="submit" id="submit">
</form>