Email HTML Help

seawulf

New Member
Hi. I want to paste this code into an email and let a recipient reply using the fields supplied. Every way I try to do it though results in seeing the code instead of the form. Is there anyone that can help this novice?


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">



<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<title>Graduate Confirmation Email</title>

<p>Thank you for registering at your Graduate Web. Your application for an account is pending approval. Please reply to this email with the following information to complete your registration. This procedure protects job listings from use by the general public.
</p>
<p>&nbsp;</p>
<p>Email & Name (as it was when you attended the Institute):
<form>
First Name:<br />
<input type="text" name="first_name" />
<br/>
Last Name:<br />
<input type="text" name="last_name" />
<br/>
Email Address:<br />
<input type="text" name="email" />

</form>
<p>Program from which you graduated: </p>
<p>
<input type="checkbox"name="program" value="Location 1" />
program 1 <br/>
<input type="checkbox"name="program" value="Location 1" />
program 2 <br/>
<input type="checkbox"name="program" value="Location 1" />
program 3 <br/>
<input type="checkbox"name="program" value="Location 1" />
program 4
<p>Please provide the location you attended:<br/>

<p>
<input type="checkbox"name="Location" value="location 1" />
I attended the location 1<br/>

<input type="checkbox"name="Location" value="location 2" />
I attended the location 2<br/>

<input type="checkbox"name="Location" value="location 3" />
I attended the location 3<br/>

<input type="checkbox"name="Location" value="location 4" />
I attended the location 4<br/>
Month you graduated:<br />
<input type="text" name="month" />
<br/>
Year you graduated:<br />
<input type="text" name="year" />
<br/>


Once we have verified the information you are supplying, you will recieve another email containing informatoin about how to log in, set your password and other details.

Thanks again for registering for the Graduate Web!!

</p>
<p>Sincerely,</p>
<p> </p>
<form>



</html>
 
Um... right off the bat, your form opening and closing tags are backwards ( opening where closing should be and vice-versa).
 

seawulf

New Member
sooo

like this?



<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">



<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<title>Graduate Confirmation Email</title>

<p>Thank you for registering at your Graduate Web. Your application for an account is pending approval. Please reply to this email with the following information to complete your registration. This procedure protects job listings from use by the general public.
</p>
<p>&nbsp;</p>
<p>Email & Name (as it was when you attended the Institute):
<form>
First Name:<br />
<input type="text" name="first_name" />
<br/>
Last Name:<br />
<input type="text" name="last_name" />
<br/>
Email Address:<br />
<input type="text" name="email" />

<form>
<p>Program from which you graduated: </p>
<p>
<input type="checkbox"name="program" value="Location 1" />
program 1 <br/>
<input type="checkbox"name="program" value="Location 1" />
program 2 <br/>
<input type="checkbox"name="program" value="Location 1" />
program 3 <br/>
<input type="checkbox"name="program" value="Location 1" />
program 4
<p>Please provide the location you attended:<br/>

<p>
<input type="checkbox"name="Location" value="location 1" />
I attended the location 1<br/>

<input type="checkbox"name="Location" value="location 2" />
I attended the location 2<br/>

<input type="checkbox"name="Location" value="location 3" />
I attended the location 3<br/>

<input type="checkbox"name="Location" value="location 4" />
I attended the location 4<br/>
Month you graduated:<br />
<input type="text" name="month" />
<br/>
Year you graduated:<br />
<input type="text" name="year" />
<br/>


Once we have verified the information you are supplying, you will recieve another email containing informatoin about how to log in, set your password and other details.

Thanks again for registering for the GCI and TCI Graduate Web!!

</p>
<p>Sincerely,</p>
<p> </p>
</form>
 
Yep, just did a quick copy and paste and looks good. In future you might want to use BB code to submit code issues here, easier to read but that just popped out at me.
 

jumpingspider

New Member
Yep, just did a quick copy and paste and looks good. In future you might want to use BB code to submit code issues here, easier to read but that just popped out at me.

Seems it's already been answered,but I'd like to second the suggestion about using BB code,it would be a lot easier indeed!
 

seawulf

New Member
Seems it's already been answered,but I'd like to second the suggestion about using BB code,it would be a lot easier indeed!

dunno what that is....give you an idea of where i'm at? lol


This is a good form right? how do I connect it to the server to make it work though? I am a godaddy user but already have form mail tied up with a main contact form on a website. I'm told by them I'd have to have another domain to get another form mail. That's silly to me, but this is why I'm trying to do it ...manually?
 
Top