---
title: "Information om CDonts på WinXP"
type: "forum-thread"
url: "https://www.webforum.nu/amne/asp/39918-information-om-cdonts-på-winxp"
topic: "ASP"
topic_url: "https://www.webforum.nu/amne/asp"
author: "saw"
published: "2002-03-19T11:41:36.000Z"
updated: "2002-03-19T11:41:36.000Z"
replies: 0
views: 302
page: 1
pages: 1
language: "sv-SE"
site: "webForum — webforum.nu"
rights: "Upphovsrätten till varje inlägg tillhör dess författare."
attribution: "Citera som: webForum, https://www.webforum.nu/amne/asp/39918-information-om-cdonts-på-winxp"
---

# Information om CDonts på WinXP

## #1 — saw, 2002-03-19T11:41Z

Jag hittade följande information om CDonts och WinXP.
Som bekant så följer inte CDonts med WinXP:s vertion av IIS 5, utan man använder sig av CDO.
Här är lite hjälpkod:

```
<% 
    sch = "http://schemas.microsoft.com/cdo/configuration/" 
    Set cdoConfig = Server.CreateObject("CDO.Configuration") 
    cdoConfig.Fields.Item(sch & "sendusing") = 2 
    cdoConfig.Fields.Item(sch & "smtpserver") = "<enter_mail.server_here>" 
    cdoConfig.fields.update 
 
    Set cdoMessage = Server.CreateObject("CDO.Message") 
    Set cdoMessage.Configuration = cdoConfig 
    cdoMessage.From = "from@me.com" 
    cdoMessage.To = "to@me.com" 
    cdoMessage.Subject = "Sample CDONTS NewMail" 
    cdoMessage.TextBody = "This is a test for CDONTS message" 
    cdoMessage.Send 
    Set cdoMessage = Nothing 
    Set cdoConfig = Nothing 
%>
```

Jag hoppas att detta kan hjälpa någon, själv hadde jag besvär med det för någon vecka sedan.
 :stud

Permalänk: https://www.webforum.nu/p/39918

---

Tråden på webben: https://www.webforum.nu/amne/asp/39918-information-om-cdonts-på-winxp
