Send E Mail On Windows 2003 Using ASP #
<%
Set objMail=CreateObject("CDO.Message")
objMail.Subject="Sending email with CDO"
objMail.From="someone@yourdomain.com"
objMail.To="someoneelse@yourdomain.com"
objMail.TextBody="This is a message."
objMail.Send
set objMail=nothing
%>
Back to ASP
Add new attachment
Only authorized users are allowed to upload new attachments.
«
This page (revision-1) was last changed on 15-Nov-2006 13:24 by UnknownAuthor