<%
MailText=""
'j=Request.Form.count
'for r=1 to j
'if not(Request.Form(r)="") then
' if Request.Form.Key(r)<>"FORMID" and Request.Form.key(r)<>"submit" and Request.Form.key(r)<>"reset" then
' MailText=MailText&request.form.key(r)&" "&Request.Form(r)&vblf
' end if
'end if
'next
MailText="Here are my comments about an article on http://www.learningplaceonline.com"&vbcrLf &vbcrLf
MailText=MailText&"Article and author: "&Trim(Request("TitleAuthor"))&vbcrLf &vbcrLf
MailText=MailText&"What I would like to remember is: "&Trim(Request("LikeToRemember"))&vbcrLf &vbcrLf
set objMail=server.createobject("JMail.SMTPMail")
objMail.ServerAddress="smtp2.e50.com"
objMail.Sender="notes@learningplaceonline.com"
objMail.Subject="Note to Myself About Article on Learning Place Online"
'objMail.AddRecipient("support@e50.com")
Dim recipient
recipient = Trim(Request("recip"))
objMail.AddRecipient recipient
objMail.Body=MailText
objMail.execute
set objMail=nothing
%>
<%
else
%>
<%
end if
%>