emails with HTML

liunx

Guest
I hope someone of you can help. I am a junior web designer and I am currently trying to send emails using HTML code - I just want them to appear like webpages. I was wondering ehther there is a way of adding some kind of script that adds the receiver's user name in the page, something like: "Welcome USERNAME". Is there any way?<br />
Thanks in advance.<!--content-->You'd have to use server side scripting and the SMTP service in order to do something like that...<!--content-->I know how to post the user ID in the webpage, but not e-mail...<br />
<br />
It is Javascript:<br />
<br />
<!-- Place this into the HEAD tag of your html --><br />
<script language="JavaScript" type="text/javascript"><br />
<!--<br />
var name = prompt("Welcome, Please enter your name below:");<br />
//--><br />
</script><br />
<br />
<!-- Place this in the body of your html --><br />
<!-- This is where you want the text to show up. --><br />
<br />
<script language="JavaScript" type="text/javascript"><br />
<!--<br />
document.writeln("Hello, " + name + ". We hope you enjoy your stay!"); <br />
//--><br />
</script><!--content-->You should learn a server side language if you want to do that kind of stuff mkokid. Might I suggest asp.net (Its fun :))<!--content-->
 
Back
Top