S
SS
Hi
I have the following script which I thought was CDONT's but looking at the
script it might be CDO?
<%
Set objCDOMail = Server.CreateObject("CDONTS.NewMail")
objCDOMail.To = "(e-mail address removed)"
objCDOMail.From = "NewCallLogger"
objCDOMail.Subject = FP_SavedFields("ManAuthorise")
strBody = strBody & "ID: " & FP_SavedFields("ID") & VbCrLf
I've tried changing it to the following and the information goes through to
the database but not the mail account
<%
Set objMessage = CreateObject("CDO.Message")
objMessage.To = "(e-mail address removed)"
objMessage.From = "NewCallLogger"
objMessage.Subject = FP_SavedFields("ManAuthorise")
strBody = strBody & "ID: " & FP_SavedFields("ID") & VbCrLf
but to no avail?
Any ideas would be great?
Cheers Shona
I have the following script which I thought was CDONT's but looking at the
script it might be CDO?
<%
Set objCDOMail = Server.CreateObject("CDONTS.NewMail")
objCDOMail.To = "(e-mail address removed)"
objCDOMail.From = "NewCallLogger"
objCDOMail.Subject = FP_SavedFields("ManAuthorise")
strBody = strBody & "ID: " & FP_SavedFields("ID") & VbCrLf
I've tried changing it to the following and the information goes through to
the database but not the mail account
<%
Set objMessage = CreateObject("CDO.Message")
objMessage.To = "(e-mail address removed)"
objMessage.From = "NewCallLogger"
objMessage.Subject = FP_SavedFields("ManAuthorise")
strBody = strBody & "ID: " & FP_SavedFields("ID") & VbCrLf
but to no avail?
Any ideas would be great?
Cheers Shona