[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[cobalt-users] sending mail from an ASP page
- Subject: [cobalt-users] sending mail from an ASP page
- From: "Joe - Just For Fun" <joe.r@xxxxxxxxxxxxxxxx>
- Date: Wed Oct 24 12:00:53 2001
- List-id: Mailing list for users to share thoughts on Cobalt products. <cobalt-users.list.cobalt.com>
Hi!
I am using an ASP page processed with ChilisoftASP to send e-mail to
customers on out site (well I am trying to). I have found many examples on
the Internet, such as:
<%@ Language=VBScript %>
<%
Set newMailObj = Server.CreateObject("????????????????")
recipStr = "joerichards@xxxxxxxxxxx"
newMailObj.To = recipStr
newMailObj.Subject = "Check it out!"
newMailObj.Body = "Here's some email for you"
newMailObj.Send
Set newMailObj = Nothing
%>
But I don't know how to make it work on the RAQ4 server I am using. Can
anyone help with this?
Thanks in advance,
Joe