Min internetleverantör (TELIA) spärrar port 25 vilket gör att mina script för att skicka mail med CDONTS inte fungerar. suck! egenskaper på vituell smtpserver leverans / avancerat / smart värd Såhär har jag gjort med CDO annars...SMTP från IIS till Telia
Hur ställer jag in SMTP-servicen i IIS att använda sig av Telias mailserver för att skicka mailen, så att jag kan fortsätta använda mina skript?Sv: SMTP från IIS till Telia
om jag nu inte minns tokfel..Sv: SMTP från IIS till Telia
set objMessage = server.createobject("cdo.message")
set objConfig = server.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") = "mail.doman.nu"
Flds.update
Set objMessage.Configuration = objConfig
objMessage.To = "olle@skogen.se"
objMessage.From = "unknown"
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
set objMessage = nothing
set objConfig = nothing
/Johan