Please post DDL, sample data and desired results.
<dmalhotr2001@yahoo.com> wrote in message
news:1112070004.526210.24250@l41g2000cwc.googlegroups.com...
> Hi,
>
> I'm using windows 2003 with asp. However I'm having problems sending
> email using the cdosys object.
>
> My code is below and I don't believe its the code but on the send
> command.
>
> <%
> dim sch
> dim cdoConfig
> dim cdoMessage
>
> sch = "
http://schemas.microsoft.com/cdo/configuration/" > Set cdoConfig = Server.CreateObject("CDO.Configuration")
> cdoConfig.Fields.Item(sch & "sendusing") = 2
> cdoConfig.Fields.Item(sch & "smtpserver") = "127.0.0.1"
> cdoConfig.fields.update
>
> Set cdoMessage = Server.CreateObject("CDO.Message")
> Set cdoMessage.Configuration = cdoConfig
> cdoMessage.From = "test@gmail.com"
> cdoMessage.To = "test@gmail.com"
> cdoMessage.Subject = "Sample CDONTS NewMail"
> cdoMessage.TextBody = "This is a test for CDONTS message"
> cdoMessage.Send
> Set cdoMessage = Nothing
> Set cdoConfig = Nothing
> %>
>
> error '8004020f'
> /tad/testing.asp, line 30
>
> I'm not sure what's wrong. When I go to my SMTP Virtual Server
> settings in IIS --> Properties --> Delivery --> Advanced .
>
> The FQDN is localhost and the smarthost is blank.
>
> Any expertise/help would be greatly appreciated.
>
> Thanks
>
> :D
>