HTML email experts - please help :(

aznsurfer

Member
Jan 31, 2002
35
0
0
Hey dubbers,

I just finished designing some html pages that will be used in email. Now the client wants the html code with the To:, From: and Subject: lines empty so they can use.

I understand their request but how does this work inside the html document? or can I just cut and paste to them i email like so:

To:
From:
Subject:

<html>
<body>
-
-
-
</body>
</html>

not sure what to do, please help :(
 

RSMemphis

Golden Member
Oct 6, 2001
1,521
0
0
Edit: I completely misunderstood your question:

in the header, you need a line:
Content-type: text/html; charset=iso8859-1

and if you need something that exceeds ASCII codes of 7bit (128 and up), you need to encode the bulk as quoted-printable.

After that, you can start with <HTML> and the works.