Web Development
--
Questions
--
Followers
Top Experts
What did I forget????
I have proven that SMTP is running without any issues.
There's not anything in Event Viewer.
I've read conflicting reports that I need Outlook 2000????
I could use some pointers to help solve this....
Thanks in advance.
Zero AI Policy
We believe in human intelligence. Our moderation policy strictly prohibits the use of LLM content in our Q&A threads.
Is there any error messages in the badmail directory or the event log?
unregisted and reregistered it
smtp is running
it's the only smtp server on the system and it's pointed to c:\inetpub\mailroot
I'm wondering about the advanced delivery properties and whether I might have something screwed up in there. Â I've tried just about everything I could think of.
I also opened port 25 on our firewall but it shouldn't matter as the firewall only blocks unsolicited inbound traffic






EARN REWARDS FOR ASKING, ANSWERING, AND MORE.
Earn free swag for participating on the platform.
Recode your applications to use CDO for Windows 2000. This object contains a field called cdoSMTPServerPickupDirecto
while recoding the application sounds like lots of fun this is something that was working before.
if you could show me a code example of what you mean by I'll try it.
This is what I have now...
<%
Set objCDOMailDNC = Server.CreateObject("CDONT
objCDOMailDNC.From = "Sender"
objCDOMailDNC.To = strToSend
objCDOMailDNC.Subject = "Subject"
objCDOMailDNC.Send
%>
Here is sample Code which shows  how to use CDO fields ...and send message..(VBScript)
Dim iMsg
Dim iConf
Dim Flds
Set iMsg = CreateObject("CDO.Message"
Set iConf = iMsg.Configuration
Set Flds = iConf.Fields
Flds(cdoPostUsingMethod) = cdoPostUsingPickup
Flds(cdoSendUsingMethod) = cdoSendUsingPickup
Flds(cdoSMTPServerPickupDi
Flds(cdoPostUserReplyEmail
Flds(cdoPostEmailAddress) Â Â Â Â Â = "something@drishinfo.com"
Flds(cdoSendUserReplyEmail
Flds(cdoSendEmailAddress) Â Â Â Â Â = "something@drishinfo.com"
Flds(cdoAutoPromoteBodyPar
Flds(cdoFlushBuffersOnWrit
Flds.Update
Set Flds = Nothing
With iMsg
  .From     = "something@drishinfo.com"
  .CC      = "somethingOther@drishinfo.
  .Subject    = "Your lights are on, but no one is home"
  .TextBody   = "You left your lights on this morning."
  .Newsgroups  = "somewhere.general"
  ' Here, we post the message
  If g_bDebug Then
   MsgBox .GetStream.ReadText
  Else
  .Post
  End If
  ' Now, we ready the message for SMTP
  .To       = "SomeoneElse@Somewhere.dri
 Â
' Request an Mail Disposition Notification from Recipients
  .Fields(cdoDispositionNoti
  .Fields.Update
  If g_bDebug Then
   MsgBox .GetStream.ReadText
  Else
  .Send
  End If
End With
' ...
Set iMsg = Nothing

Get a FREE t-shirt when you ask your first question.
We believe in human intelligence. Our moderation policy strictly prohibits the use of LLM content in our Q&A threads.
Flds(cdoPostUsingMethod) = cdoPostUsingPickup
Error Type:
ADODB.Fields (0x800A0BB9)
Arguments are of the wrong type, are out of acceptable range, or are in conflict with one another.
/fmt/mailtest.asp, line 65
I'll be requesting this question to be deleted but I appreciate the effort.






EARN REWARDS FOR ASKING, ANSWERING, AND MORE.
Earn free swag for participating on the platform.
Web Development
--
Questions
--
Followers
Top Experts
Web development includes all aspects of presenting content on intranets and the Internet, including delivery development, protocols, languages and standards, server software, browser clients, databases and multimedia generation.