Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

email program

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
hi, do you all know what does myMail.Body = Request.ServerVariables("LOGON_USER")&"You have loaned an item. On " & Date() & " at "& Time & " . means?

<%

If request.form(&quot;EmailAddress&quot;) <> &quot;&quot;) then
Dim DataConn, myMail
Dim ConnString

Set myMail = CreateObject(&quot;CDONTS.NewMail&quot;)
myMail.From = &quot;lao@abm.com&quot;
myMail.To = Request.Form (&quot;text1&quot;)
myMail.Subject = &quot;Hello&quot;
myMail.Body = Request.ServerVariables(&quot;LOGON_USER&quot;)&&quot;You have loaned an item. On &quot; & Date() & &quot; at &quot;& Time & &quot; . Please note your ticket identifier would be your username, date and time loaned.&quot;

myMail.Send
Set myMail = Nothing

end if%>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top