ok...here is the code that I am using////
<code>
<%
dim email
'dim body, confirmsg, action, recipient, subject, from, fromem
'dim name, title, company, address, city, state, zip, areacode
'dim phone, fax,
how_they_heard, i_see
'dim comments
action = request("action"
if action = "send" then
email = request("email"
recipient = "webmaster@uliad.com"
subject = "Add Me!"
from = request("name"

fromem = request("email"
body = body & email & chr(10)
SendMail recipient, body, subject, from, fromem
confirmsg = "<font face=verdana,arial,helvetica color=A0522D size=2> Thank you.</font>"
end if
sub SendMail(sRecipient, sBody, sSubject, sFrom, sFromem)
'on error resume next
Dim oEmail
Dim i
set oEmail = Server.CreateObject("SMTPsvg.Mailer"
oEmail.RemoteHost = "mail.domain.com"
oEmail.FromAddress = sFromem
oEmail.Subject = sSubject
oEmail.AddRecipient sRecipient, sRecipient
oEmail.BodyText = sBody
oEmail.SendMail
response.write oEmail.Response
set oEmail = nothing
end sub
%>
<html>
<head>
<title>Uliad Newsletter</title>
</head>
<body bgcolor="#ffffff" link="#585858">
<% if action = "send" then %>
<tr>
<td align="left" width="100%"><font color="navy" face="arial,verdana,helvetica"
size="2"><strong>Thanks...you are now added to our mailing list!</strong><br>
<a href="
target="_parent"><font color="#000000" face="verdana,arial,helvetica"
size="2">Return to the Home Page</font></a></font></td>
</tr>
<% else %>
<td valign="top" align="left"><font color="#a0522d" face="verdana,arial,helvetica" size="2"> </font>
<form method="post" action="form1.asp">
<input type="hidden" name="action" value="send">
<table cellpadding="2" cellspacing="0" border="1" align="left">
<tr>
<td valign="top" align="left">
<FONT color=#000000>
<FONT face=verdana,arial,helvetica size=2>
<STRONG>Email:</STRONG></FONT>
</td>
<td align="left"><FONT face=verdana,arial,helvetica
size=2><INPUT name=email size=30></FONT></td>
</tr>
<tr>
<TD colspan="2" align=center><br><INPUT type=submit value="Submit"><INPUT type=reset value="Clear"></TD></TR>
</table>
</form>
<% end if %>
</td></TR></TABLE>
</body>
</html>
</code>
It is coming in a little messy, but hopefully you can see what is going on.