PHP email form help - Quick 10 pts.?

justsoyouknow

New member
I want to have the email address that individual type in sent to my email in-box. I have the code below:

<form action="sendemail.php" id="subscribe-form" method="post">
<div class="wrapper">
<label>
<input type="text" value="Enter Your E-Mail:" onblur="if(this.value=='') this.value='Enter Your E-Mail:'" onfocus="if(this.value =='Enter Your E-Mail:' ) this.value=''" />
</label>
<input type="submit" value="Subscribe" id="subscribe-submit" />
</div>
</form>

I need help finishing and making the php script server side portion. I would like to name this one sendemail.php

Thanks
 
Back
Top