Hello, I am totally newbie to asp.
I found a piece of code that shows me how to send emails:
Heres the code of my page:
<html>
<head>
<title>ASP Page - Send Emails</title>
</head>
<body bgcolor="white" text="black">
<%
Set objmail = Server.CreateObject("CDONTS.NewMail")
objmail.from = "me@mycompany.com.br"
objmail.to = "me@yourcompany.com.br"
objmail.subject = "This is a test"
objMail.BodyFormat = 0
objMail.MailFormat = 0
objmail.body = "test"
objmail.send
set objmail = nothing
%>
</body>
</html>
I saved the page as testmail.asp and it didnt work. ok, what do I have to do?
Please help.
Thanks a lot,
venusgirrl