• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

HTML email experts - please help :(

aznsurfer

Member
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 🙁
 
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.
 
Back
Top