I might have a freudian lips but i cant figure out how to send an email address to a specific url without the url encodes the AT symbol in %40... basically i have a basic form
<form class="firstLoginform" id="firstLoginform" name="firstLoginform" method="get" action="https://myurl" >
<label for="email" >Email Address</label>
<input type="text" name="userEmail" id="userEmail" size="20" maxlength="150">
<center>
<input type="submit" value="submit" />
</center>
</form>
but i submit the form the url is gonna be like
https://myurl?userEmail=myemail%40mydomain.com
but I NEED, for soe reason of the previous settings a ul like this
https://[email protected]
i dont have access to the page that is receiving the variables...so i wonder if i can send the email address AS IS..
thanks!!!