StPatrick
Perch
In ASP code I'm using CDO to send e-mails. However now now I get an error returned saying:
The code itself hasn't been changed and I'm not updating the SendUsing field in CDO.. Here is the piece of code that produce the error:Error occured: The "SendUsing" configuration value is invalid
Code:
set Mail = Server.CreateObject("CDO.Message")
With Mail
.To = "somewhere"
.From = "[email protected]"
.ReplyTo = email
.Subject = "Subject"
.AutoGenerateTextBody = True
.HTMLBody = strHTML
On Error Resume Next
.Send
If Err then strError = "Error occured: " & Err.Description
On Error Goto 0
End With
set Mail = nothing