jeffcullina
Programmer
I have an email set up through a web page that makes use of CDONTS. The web page sits on an NT server. The recipient of the email has Outlook set up to show the standard message box that says a new email has arrived, and generate the standard envelope icon in the status frame of the windows bar. He is properly notified by both message box and envelope icon for standard emails, but is not notified by either from the web-generated email. It only makes sense that the problem has to do with the server side of the email rather than the recipient's configuration. Is there anything I can add to the CDONTS properties or any add-in I can have installed on the server to handle this problem? Thanks. The CDONTS code is written as follows:
<%
'SEND EMAIL
Dim objMail
Set objMail = Server.CreateObject("CDONTS.NewMail"
objMail.To = strRecipient
objMail.From = strSender
objMail.cc = strCC
objMail.Subject = strSubject
objMail.Body = strBody
objMail.Send
set objMail = nothing
%>
<%
'SEND EMAIL
Dim objMail
Set objMail = Server.CreateObject("CDONTS.NewMail"
objMail.To = strRecipient
objMail.From = strSender
objMail.cc = strCC
objMail.Subject = strSubject
objMail.Body = strBody
objMail.Send
set objMail = nothing
%>