473,386 Members | 1,758 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

NT, CDO, SMTP

Sue
Does this "NT-based machine (NT, 2K, XP)" mean a WindowsXP machine is a
NT-based machine?

What does NT stand for and what does it mean?

What is CDONTS?

What does this mean - "The machine must be running the SMTP service "?

Thanks,

Sue
Nov 12 '05 #1
8 3546
On Wed, 19 May 2004 04:50:16 GMT, "Sue" <sw*****@earthlink.net> wrote:

See comments in-line.
-Tom.
Does this "NT-based machine (NT, 2K, XP)" mean a WindowsXP machine is a
NT-based machine? According to the author of that sentence: yes.

What does NT stand for and what does it mean? New Technology. Newer than Windows 3.1 en vogue at that time. The
first 32-bit OS from MSFT designed for businesses and servers.

What is CDONTS? Collaborative data objects for Windows NT Server. A popular object
model to send emails.

What does this mean - "The machine must be running the SMTP service "? SMTP is Simple Mail Transport Protocol, a popular way to send emails.
Use Control Panel > Administrative Tools > Services to see if it is
running.

Thanks,

Sue

With so many basic questions you appear to be very lost. Perhaps it is
time to get professional help.
Nov 12 '05 #2
Tom van Stiphout wrote:
On Wed, 19 May 2004 04:50:16 GMT, "Sue" <sw*****@earthlink.net> wrote:

See comments in-line.
-Tom.

Does this "NT-based machine (NT, 2K, XP)" mean a WindowsXP machine is a
NT-based machine?


According to the author of that sentence: yes.


Yes, XP has it's roots in NT.

What does NT stand for and what does it mean?


New Technology. Newer than Windows 3.1 en vogue at that time. The
first 32-bit OS from MSFT designed for businesses and servers.


New - seems silly now doesn't it as it applied to something introduced
so long ago :-)

What is CDONTS?


Collaborative data objects for Windows NT Server. A popular object
model to send emails.


Old - The favored thing now is CDO (basically disassociating it from a
particular version of Windows).
--
Error reading sig - A)bort R)etry I)nfluence with large hammer
Nov 12 '05 #3
SA
Actually, CDONTS was/is a very light weight email programming interface that
runs on NT / 2000 / Xp both servers and workstations. It is primarily used
by web servers and web applications, but can be used from other apps as
well. CDONTS outputs a plain text mail item and sends it to a targeted
SMTP mail server (Simple mail transport protocol, is the internet standard
mail system), that is run on the web server or another server. CDONTS
requires the SMTP mail service to be running to work. But it runs on all
flavors of Windows other than Win9.x. From the stand point of programming,
CDONTS can be a very easy interface to use if all you want to do is send
plain text SMTP mail and you have a mail service running rather than using
API calls.

CDO on the other hand, was the "heavy weight" MAPI focused email automation
programming interface, that was primarily focused on desktop applications
needing interface with the MAPI (ms mail application programming interface)
mail system (i.e. the mail system that underlies Outlook by and large).

CDO is not really in "vogue" now either. MS is moving toward SMTP as the
standard mail protocol rather than MAPI, and LDAP as the standard directory
interface for things like address books. On the 2000, XP and Server 2003
platforms, you can use the automation interface in what is called CDOex to
send SMTP mail in a much more robust way than you could with CDONTS. You
have to write your own code to build up multipart MIME email message
sections, but if all you want to do is send a plain text SMTP mail, CDOex
is also pretty easy to use. CDOex, also requires an SMTP service to be
running to function.

--
Steve Arbaugh
ACG Soft
http://ourworld.compuserve.com/homepages/attac-cg

"Trevor Best" <nospam@localhost> wrote in message
news:40**********************@auth.uk.news.easynet .net...
Tom van Stiphout wrote:
On Wed, 19 May 2004 04:50:16 GMT, "Sue" <sw*****@earthlink.net> wrote:

See comments in-line.
-Tom.

Does this "NT-based machine (NT, 2K, XP)" mean a WindowsXP machine is a
NT-based machine?


According to the author of that sentence: yes.


Yes, XP has it's roots in NT.

What does NT stand for and what does it mean?


New Technology. Newer than Windows 3.1 en vogue at that time. The
first 32-bit OS from MSFT designed for businesses and servers.


New - seems silly now doesn't it as it applied to something introduced so
long ago :-)

What is CDONTS?


Collaborative data objects for Windows NT Server. A popular object
model to send emails.


Old - The favored thing now is CDO (basically disassociating it from a
particular version of Windows).
--
Error reading sig - A)bort R)etry I)nfluence with large hammer

Nov 12 '05 #4
Trevor Best <nospam@localhost> wrote in
news:40**********************@auth.uk.news.easynet .net:
Tom van Stiphout wrote:
On Wed, 19 May 2004 04:50:16 GMT, "Sue" <sw*****@earthlink.net>
wrote:
Does this "NT-based machine (NT, 2K, XP)" mean a WindowsXP
machine is a NT-based machine?


According to the author of that sentence: yes.


Yes, XP has it's roots in NT.


Has it's roots? It *is* NT. It is built on top of the NT kernel, and
is substantially the same OS as NT 4 (which was substantially
different from NT 3.51, its predecessor, because MS had to bring
certain graphics functions into the kernel because of the demands of
the Win95 UI that was grafted onto NT at that point; had they waited
a couple of years, hardware would have fixed the problem and all our
NT-based versions of Windows would be more stable, but I digress).

It's important to recognize that there have been 3 Windows
"kernels":

1. 16-bit Windows (Win3.x and its predecessors -- arguably not a
kernel at all, since it really wasn't an OS, but just a GUI running
on top of MS-DOS; though by the time of Win4Workgroups and Win3.11,
it was getting quite a bit of OS-like stuff in it, like virtual
memory management and direct 32-bit disk access).

2. Windows 9x (Win95, Win95, WinME), which was a version of Windows
that had lots and lots of 16-bit components but could run apps
written to the Win32 API.

3. Windows NT (NT 3.1, 3.5, 3.51, 4.0, Windows 2000, Windows XP),
which was architected from the ground up to replace Microsoft's
original commitment to OS2, which was developed in consultation with
IBM.

Windows XP is unquestionably Windows NT, just with a different name.
Indeed, I'd call it Windows NT 5.2, since it's not significantly
different at the low level from Windows 2000 (which was a major
rewrite in comparison to NT 4). Most of XP's differences with Win2K
are in the GUI and the driver model, not in the actual kernel. But
the differences are quite significant, making XP a rather unreliable
and problematic OS, in my experience.

--
David W. Fenton http://www.bway.net/~dfenton
dfenton at bway dot net http://www.bway.net/~dfassoc
Nov 12 '05 #5
"SA" <~f***********@nspm.com> wrote in
news:c8**********@ngspool-d02.news.aol.com:
. . . CDONTS requires the SMTP mail service to be running to
work. But it runs on all flavors of Windows other than Win9.x.
Er, what you really mean is that it runs on NT-based versions of
Windows, as it empatically would *not* run on Win3.x.
CDO is not really in "vogue" now either. MS is moving toward
SMTP as the standard mail protocol rather than MAPI, and LDAP as
the standard directory interface for things like address books.
On the 2000, XP and Server 2003 platforms, you can use the
automation interface in what is called CDOex to send SMTP mail in
a much more robust way than you could with CDONTS. You have to
write your own code to build up multipart MIME email message
sections, but if all you want to do is send a plain text SMTP
mail, CDOex is also pretty easy to use. CDOex, also requires an
SMTP service to be running to function.


Keep in mind, though, that because of the spam problem, you really
won't be able to send much email from a workstation, or from any
machine that does not have a DNS record indicating that it is a mail
server.

--
David W. Fenton http://www.bway.net/~dfenton
dfenton at bway dot net http://www.bway.net/~dfassoc
Nov 12 '05 #6
"David W. Fenton" <dX********@bway.net.invalid> wrote:
making XP a rather unreliable
and problematic OS, in my experience.


Whereas I've been quite happy with Win XP.

Tony
--
Tony Toews, Microsoft Access MVP
Please respond only in the newsgroups so that others can
read the entire thread of messages.
Microsoft Access Links, Hints, Tips & Accounting Systems at
http://www.granite.ab.ca/accsmstr.htm
Nov 12 '05 #7
David W. Fenton wrote:
Keep in mind, though, that because of the spam problem, you really
won't be able to send much email from a workstation, or from any
machine that does not have a DNS record indicating that it is a mail
server.


That's not as restrictive as you'd think, on our set up for instance,
our mail server's address is also our NAT address so any machine within
our network is able to send mail. You can also set up a smarthost on
your SMTP server although for this application if you can see a
smarthost then you may as well use that as the SMTP server in the first
place and save a few resources on your own machine.

--
Error reading sig - A)bort R)etry I)nfluence with large hammer
Nov 13 '05 #8
Trevor Best <nospam@localhost> wrote in
news:40**********************@auth.uk.news.easynet .net:
David W. Fenton wrote:
Keep in mind, though, that because of the spam problem, you
really won't be able to send much email from a workstation, or
from any machine that does not have a DNS record indicating that
it is a mail server.


That's not as restrictive as you'd think, on our set up for
instance, our mail server's address is also our NAT address so any
machine within our network is able to send mail. You can also set
up a smarthost on your SMTP server although for this application
if you can see a smarthost then you may as well use that as the
SMTP server in the first place and save a few resources on your
own machine.


Most small businesses aren't running their own email server, so it
doesn't really apply to a lot of people, seems to me.

--
David W. Fenton http://www.bway.net/~dfenton
dfenton at bway dot net http://www.bway.net/~dfassoc
Nov 13 '05 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Dan Boyle | last post by:
Hi, I am having difficulty connection to an smtp host. I am using the following code but I don't think I fully understand what smtp host can be used. function setSMTPParams($host = null,...
21
by: Nancy | last post by:
Hi, Guys, Is there any other way to use python or mod_python writing a web page? I mean, not use "form.py/email", no SMTP server. <form action="form.py/email" method="POST"> ... Thanks a lot. ...
0
by: Almir | last post by:
I hate this Net::SMTP stuff, everything works fine but for the suject field. I see no way of having it show in an email when sent. Has anyone had this problem, can anyone explain why there are no...
2
by: RandRace | last post by:
I'm having some problems with a little script i wrote using net::smtp. I originally wrote it in linux where it works perfectly. I tried to use it from windows the other day and it doesn't work. It...
3
by: Shannon Clyde | last post by:
SMTP + relay + auth in an IPSEC tunnel to connect to our primary SMTP mail server (GroupWise) from the Web server looks like it would work fine, but is it the best way? I am aware of CDOSYS and...
3
by: dale zhang | last post by:
Hi, I write an asp.net web application. It has a “Contact Us” page, where users fill in their email, subject and text and hit send. Then the email will go to my hard coded yahoo email...
1
by: bivin | last post by:
hai i am requesting your technical support. please help me. i have been working with this for five days. the problem is relating with the smtp. i am trying to send an email from the asp.net...
34
by: antonyliu2002 | last post by:
I've set up the virtual smtp server on my IIS 5.1 like so: 1. Assign IP address to "All Unassigned", and listen to port 25. 2. Access Connection granted to "127.0.0.1". 3. Relay only allow...
13
by: jcor | last post by:
Hi, I'm trying some code to send a mail with my script. This is it: #!/usr/bin/perl use Net::SMTP; my $smtp_server='62.193.245.15'; my $smtp = Net::SMTP->new($smtp_server) or die "Can't Open...
5
by: jimhill10 | last post by:
I have a perl script that creates an email attachment file from POST data on a web page. This works just fine. I want to customize the email body to contain all of the text data from the file...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.