So i currently have it set to where people can enter data. I then have this written :
<form
action="mailto:[email protected]"
method="POST"
enctype="multipart/form-data"
name="test">
First name: <input name="firstname" type="text" />
<br />
Last name: <input name="lastname" />
<br />
</form>
when users click the submit button, it pops up with a window that requires the user to log into their own email to send to the webmaster. I want to be able to have it send the email from my email address to my email address.
any thoughts?
<form
action="mailto:[email protected]"
method="POST"
enctype="multipart/form-data"
name="test">
First name: <input name="firstname" type="text" />
<br />
Last name: <input name="lastname" />
<br />
</form>
when users click the submit button, it pops up with a window that requires the user to log into their own email to send to the webmaster. I want to be able to have it send the email from my email address to my email address.
any thoughts?