Ricky.G Geschrieben 7. Oktober 2010 Geschrieben 7. Oktober 2010 Hallo, ich habe IIS6, ASP-Classic und sende Emails mit CDO: <!-- METADATA TYPE="typelib" UUID="CD000000-8B95-11D1-82DB-00C04FB1625D" NAME="CDO for Windows 2000 Library" --> ' -------------- SCHNIPP ---------- Const cdoSendUsingMethod= "http://schemas.microsoft.com/cdo/configuration/sendusing" Const cdoSendUsingPort = 2 ' 1 (2=direktversandt; 1=ordnerversandt) Const cdoSMTPServer = "http://schemas.microsoft.com/cdo/configuration/smtpserver" Const cdoSMTPServerPort = "http://schemas.microsoft.com/cdo/configuration/smtpserverport" Const cdoSMTPConnectionTimeout = "http://schemas.microsoft.com/cdo/configuration/smtpconnectiontimeout" Const cdoSMTPAuthenticate= "http://schemas.microsoft.com/cdo/configuration/smtpauthenticate" Const cdoBasic = 1 Const cdoSendUserName = "http://schemas.microsoft.com/cdo/configuration/sendusername" Const cdoSendPassword = "http://schemas.microsoft.com/cdo/configuration/sendpassword" ' ------------------ SCHNAPP ------------- ...im Netz findet man zum anfordern einer Lesebestätigung sowas: Set objConfig = Server.CreateObject("CDO.Configuration") objConfig.Fields(cdoSendUsingMethod) = cdoSendUsingPort objConfig.Fields(cdoSMTPServerPort) = 25 objConfig.Fields(cdoSMTPConnectionTimeout) = 30 'Ausgehender SMTP Server objConfig.Fields(cdoSMTPServer) = "auth.smtp.server.com" 'Klartext Authentifizierung objConfig.Fields(cdoSMTPAuthenticate) = cdoBasic objConfig.Fields(cdoSendUserName) = "mail@server.com" objConfig.Fields(cdoSendPassword) = "passwort" ' ----------- start lesebestätigung ------- objConfig.Fields(cdoDispositionNotificationTo) = "gelesen@server.com" objConfig.Fields(cdoReturnReceiptTo) = "gelesen@server.com" ' ----------- ende lesebestätigung ------- objConfig.Fields.Update ...aber die Lesebestätigung funktioniert leider nicht. Mache ich etwas verkehrt? Hat jemand eine Lösung die bei ihm funktioniert? Besten Dank im Vorraus! Zitieren
Empfohlene Beiträge
Dein Kommentar
Du kannst jetzt schreiben und Dich später registrieren. Wenn Du ein Konto hast, melde Dich jetzt an, um unter Deinem Benutzernamen zu schreiben.