HTML and plain text

Jantepas

Member
Hi,
How can i combine HTML with plain text, so if a user doesn't want html newsletters. Can i do it in one letter without the effect that a receiver gets it all double in one newsletter. Where can i find it in the manual?
regards,
jan
 

stanbusk

Administrator
Staff member
Use the Text/HTML format, right your text version and the HTML version below. The text version will be displayed if the recipient software is set to do so.
 

Jantepas

Member
Hi Stanbusk,
Thanks, can you give me an example of this?

Or is this right:

Here text.....
Here text.....
Here text.....

<!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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Untitled Document</title>
<style type="text/css">
<!--
body {
font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
background: #4E5869;
margin: 0;
padding: 0;
color: #000;
}
 

stanbusk

Administrator
Staff member
Yes but replacing:

<!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">

with just

<html>
 
Top