You'd be better trying this on the asp_cdo list Debra. This list is for
developing applications for use as IIS add-ins, such as Index Server.
Stephen
<Debra.Shaffer@l...> wrote in message
news:176725@i..._applications...
>
> I am using VB - IIS application to write ASP pages. One of the tasks I
> need to complete is to write mail messages that will send receipt
> verificaitons. I've added the CDO 2000 (cdosys.dll) to my application and
> the mail messages are getting through without any problem...but the return
> receipts don't work...can anyone help....
>
> My code looks like...
>
> Dim objMailMsg As New CDO.Message
> Dim conf As New CDO.Configuration
>
> Set conf = objMailMsg.Configuration
>
> objMailMsg.To = "debra.shaffer@t..."
> objMailMsg.From = "Debra Shaffer<debra.shaffer@l...> ret=full"
> objMailMsg.ReplyTo = "Debra Shaffer<debra.shaffer@l...>"
> objMailMsg.Subject = "Testing Return Receipt"
> objMailMsg.HTMLBody = "<b><i>" & Request.Form("suggestions") & "</i></b>"
>
> 'Message Delivery Notification
> objMailMsg.MDNRequested = True
> 'Delivery Status Notification
> objMailMsg.DSNOptions = cdoDSNSuccessFailOrDelay
> conf.Fields(cdoDispositionNotificationTo)
"debra.shaffer@l..."
> conf.Fields.Update
> objMailMsg.Send
>
> I've captured the file written out in the queue and it
> shows the cdoDispositionNotificationTo field, but I don't
> see anything showing the DSNOptions....and of course I'm
> not getting a delivery receipt from the receipient...
>
> Would appreciate any help...
> Thanks
> Debra
>
>
>