BBB har stoppat egen mailserver i sitt nät. Detta gör att man måste maila via deras mailserver. Någon som vet hur man mailar via mailserver via ett ASP-skript. Såhär har jag gjort:Maila via mailserver från ASP-skript
Sv: Maila via mailserver från ASP-skript
<code>
set objMessage = createobject("cdo.message")
set objConfig = 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.domän.se"
Flds.update
Set objMessage.Configuration = objConfig
objMessage.To = "johan@domän.se"
objMessage.From = "kalle@domän.se"
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
</code>
/Johan