Why is the fullname not showing within my html code

cyberfrog

New Member
Hi,

I have created a newsletter in the message with some simple html tags BUT I haven't got a clue how/where to put the [Fullname] tag because it doesn't show up in the email that is sent out. Here is my code:

[FullName]<html>
<body>
<img src="http://www.teambscs.com/Newsletter/newsLetter-1.png"><br />
<img src="http://www.teambscs.com/Newsletter/newsLetter-2.png"><br />
<img src="http://www.teambscs.com/Newsletter/newsLetter-3.png">
</body>
</html>
 

stanbusk

Administrator
Staff member
In HTML, only the text between the <body> and </body> tags will be displayed. Your text is outside the <html> tag.
 
Top