[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[cobalt-users] sending mail from an ASP page



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