<% set msg = Server.CreateOBject("JMail.Message") msg.Logging = False msg.silent = False msg.From = "scott@houseviewonline.com" msg.FromName = "Scott Slinkard" msg.AddRecipient "scott2loud@clas.net" msg.AddRecipient "15732431977@maxemailsend.com" msg.Subject = "Test Fax from asp" & now() msg.Body = "{SKIPCOVERPAGE} .::HouseviewOnline.com Listing Added..." & vbCrLf & vbCrLf & "This is a test fax please deliver to scott.... {ref=MLS 12345}" msg.Send("mail.clas.net") set msg = Nothing Response.Write("Fax sent!") %>