Joined
·
6,569 Posts
Hi I need to know if I can connect an table to an email address. I want a person to be able to click submit and have the information in the table to be sent to my email so that i can contact the customer.
Here is what I have for a table:
Besides this I am lost.
Cheers!
Here is what I have for a table:
HTML:
<table>
<tr>
<td>Name</td><td><input type=text name="Name" size=30 maxlength=50 value="">
</tr>
<tr>
<td>Email Address</td><td><input type=text name="Email_Address" size=30 maxlength=50 value="">
</tr>
<tr>
<td>Phone Number</td><td><input type=text name="Phone_Number" size=30 maxlength=50 value="">
</tr>
<tr>
<td>Comments:</td><td><textarea name=exComments rows=8 cols=50></textarea>
</td>
</tr>
<tr>
<td> </td><td align=center><input type=submit class=button value="Submit"></td>
</tr>
</table>
Cheers!