Send mail using CDO

DETAILS

<%

set objMessage = createobject("cdo.message")
set objConfig = createobject("cdo.configuration")

' Setting the SMTP Server
Set Flds = objConfig.Fields
Flds.Item("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2
Flds.Item("http://schemas.microsoft.com/cdo/configuration/smtpserver") = "localhost"
Flds.update


Set objMessage.Configuration = objConfig
objMessage.To = "you@YourHostedDomainName.com"
objMessage.From = "someone@somewhere.com"
objMessage.Subject = "This is a sample email sent using CDO"
objMessage.TextBody = "Congratulation" & VbCrLf & "If you receive this is, your mail component works"
objMessage.fields.update
objMessage.Send

Response.write "Mail sent..."

set objMessage = nothing
set objConfig = nothing

%>

  • 0 Users Found This Useful
Was this answer helpful?

Related Articles

Query MySQL Database in PHP

DETAILS<html><head><title>MySQL Test...

SQLXML code sample in ASP

DETAILS<%Response.ContentType = "text/xml"Dim oCmd, sSQL sSQL =...

Insert data into a MS SQL database with .NET SQL Data Provider in ASP.NET

 DETAILS  <%@ import namespace="system.data.sqlclient" %><Script...

Redirect a subdomain to a subdirectory

DETAILS You can redirect a subdomain to a subdirectory by using ASP or ASP.net...

Query SQL database with .NET SQL Data Provider in ASP.NET

DETAILS<%@ import namespace="system.data.sqlclient" %><Script...