Welcome to HostingForumz.com!
FAQFAQ   SearchSearch      ProfileProfile    Private MessagesPrivate Messages   Log inLog in

CDO.Message, SMTP Service, Max Size for TO property

 
   Web Hosting Problem Solving Community! (Home) -> IIS RSS
Related Topics:
IIS 5.0 dies after smtp service fails to send corrupt emai.. - Win 2k server IIS 5.0 shuts down seemingly after a badly formed email message is sent out. Event Viewer logs first a 4194 COM+ error a custom component with C0000005. another error 4097 COM+ is..

SMTP Relay Error using CDONTS and the .CC property in ASP - Hey, this is a real head The following code works as written: Set objMail = = = = =

SMTP Email Address Size Limitation - I have setup my Windows 2000 Server as a SMTP server to forward email. I have confirmed that there is a limit to the size of the From and To email addresses that can be used. It appears to be a limit of 32 total. I realize this seems like..

Packet Size for a Web Method (Web Service) - Can we increase the packet size for web method call in a web service. We are trying to pull large data set and would like to increase the default packet size for a web method call. Regards, Murali

INETINFO at 100% when receiving first SMTP message - I'm the following problem. I have two Exchange Server 2000 (last SP and hotfix) and on both the process INETINFO works normally until the first SMTP message is sent to the SMT Service. From that moment onward INETINFO jumps to 100% of CPU and..
Next:  Load balancing issue -- Cisco 11000 series conten..  
Author Message
vbphil

External


Since: Feb 07, 2008
Posts: 2



(Msg. 1) Posted: Thu Feb 07, 2008 7:16 am
Post subject: CDO.Message, SMTP Service, Max Size for TO property
Archived from groups: microsoft>public>inetserver>iis (more info?)

So, I have a VB6 program running on a Win2003 64Bit server that sends email
using CDO.Message. The scope of the program is expanding to where a single
email message may have to be sent to several hundred email addresses.

The program creates a list of users logged into a particular program and
sends them a status email message. The possible user count is going up to
several hundred so I'm wondering if there is a restriction on how long the TO
property string can be in the CDO.Message component. Should I take steps to
send out several duplicate emails with a reduced set of TO addresses?

Set oNewMail = New CDO.Message
oNewMail.Subject = "subject line"
oNewMail.TextBody = "message text"
oNewMail.To = sTo
oNewMail.From = sFrom
oNewMail.Send
Set oNewMail = Nothing



Thanks, -phil


--
no place like 127.0.0.1

 >> Stay informed about: CDO.Message, SMTP Service, Max Size for TO property 
Back to top
Login to vote
Anthony Jones

External


Since: Jan 28, 2006
Posts: 170



(Msg. 2) Posted: Thu Feb 07, 2008 3:06 pm
Post subject: Re: CDO.Message, SMTP Service, Max Size for TO property [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

"vbphil" <vbphil DeleteThis @online.nospam> wrote in message
news:A24581CF-3F5F-43DF-B529-D3EFB1DC0062@microsoft.com...
> So, I have a VB6 program running on a Win2003 64Bit server that sends
email
> using CDO.Message. The scope of the program is expanding to where a single
> email message may have to be sent to several hundred email addresses.
>
> The program creates a list of users logged into a particular program and
> sends them a status email message. The possible user count is going up to
> several hundred so I'm wondering if there is a restriction on how long the
TO
> property string can be in the CDO.Message component. Should I take steps
to
> send out several duplicate emails with a reduced set of TO addresses?
>
> Set oNewMail = New CDO.Message
> oNewMail.Subject = "subject line"
> oNewMail.TextBody = "message text"
> oNewMail.To = sTo
> oNewMail.From = sFrom
> oNewMail.Send
> Set oNewMail = Nothing


Consider batching it up or even sending individually. Personally I'm
annoyed when I receive a email where I'm one of dozens of other arbitary
(from my perspective) email addresses. If just one of those recipients has
a spybot harvesting email address I've just had my email address handed to
it.

One approach I have used is to batch emails by organisation. Of course that
might not help if you're emailing private individuals (since your list of
hotmail users could still be large for example).


--
Anthony Jones - MVP ASP/ASP.NET

 >> Stay informed about: CDO.Message, SMTP Service, Max Size for TO property 
Back to top
Login to vote
vbphil

External


Since: Feb 07, 2008
Posts: 2



(Msg. 3) Posted: Thu Feb 07, 2008 3:06 pm
Post subject: Re: CDO.Message, SMTP Service, Max Size for TO property [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Thanks,
Yes I've decided to batch it up just in case the count gets large. This
process is running on our local intranet and all the email recipients are
internal employees. You make a good point about the spybot.
--
no place like 127.0.0.1


"Anthony Jones" wrote:

> "vbphil" <vbphil.RemoveThis@online.nospam> wrote in message
> news:A24581CF-3F5F-43DF-B529-D3EFB1DC0062@microsoft.com...
> > So, I have a VB6 program running on a Win2003 64Bit server that sends
> email
> > using CDO.Message. The scope of the program is expanding to where a single
> > email message may have to be sent to several hundred email addresses.
> >
> > The program creates a list of users logged into a particular program and
> > sends them a status email message. The possible user count is going up to
> > several hundred so I'm wondering if there is a restriction on how long the
> TO
> > property string can be in the CDO.Message component. Should I take steps
> to
> > send out several duplicate emails with a reduced set of TO addresses?
> >
> > Set oNewMail = New CDO.Message
> > oNewMail.Subject = "subject line"
> > oNewMail.TextBody = "message text"
> > oNewMail.To = sTo
> > oNewMail.From = sFrom
> > oNewMail.Send
> > Set oNewMail = Nothing
>
>
> Consider batching it up or even sending individually. Personally I'm
> annoyed when I receive a email where I'm one of dozens of other arbitary
> (from my perspective) email addresses. If just one of those recipients has
> a spybot harvesting email address I've just had my email address handed to
> it.
>
> One approach I have used is to batch emails by organisation. Of course that
> might not help if you're emailing private individuals (since your list of
> hotmail users could still be large for example).
>
>
> --
> Anthony Jones - MVP ASP/ASP.NET
>
>
>
 >> Stay informed about: CDO.Message, SMTP Service, Max Size for TO property 
Back to top
Login to vote
Trevor Benedict

External


Since: Feb 08, 2008
Posts: 18



(Msg. 4) Posted: Fri Feb 08, 2008 4:54 pm
Post subject: Re: CDO.Message, SMTP Service, Max Size for TO property [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

If they are internal employees and if your program logic allows using a
Distribution List, it would make it very easy for you, unless of course the
list of employees are dynamic.

Regards,

Trevor Benedict
MCSD

"vbphil" <vbphil.TakeThisOut@online.nospam> wrote in message
news:B29CCC13-3EE9-475F-B663-A2929522B01D@microsoft.com...
> Thanks,
> Yes I've decided to batch it up just in case the count gets large. This
> process is running on our local intranet and all the email recipients are
> internal employees. You make a good point about the spybot.
> --
> no place like 127.0.0.1
>
>
> "Anthony Jones" wrote:
>
>> "vbphil" <vbphil.TakeThisOut@online.nospam> wrote in message
>> news:A24581CF-3F5F-43DF-B529-D3EFB1DC0062@microsoft.com...
>> > So, I have a VB6 program running on a Win2003 64Bit server that sends
>> email
>> > using CDO.Message. The scope of the program is expanding to where a
>> > single
>> > email message may have to be sent to several hundred email addresses.
>> >
>> > The program creates a list of users logged into a particular program
>> > and
>> > sends them a status email message. The possible user count is going up
>> > to
>> > several hundred so I'm wondering if there is a restriction on how long
>> > the
>> TO
>> > property string can be in the CDO.Message component. Should I take
>> > steps
>> to
>> > send out several duplicate emails with a reduced set of TO addresses?
>> >
>> > Set oNewMail = New CDO.Message
>> > oNewMail.Subject = "subject line"
>> > oNewMail.TextBody = "message text"
>> > oNewMail.To = sTo
>> > oNewMail.From = sFrom
>> > oNewMail.Send
>> > Set oNewMail = Nothing
>>
>>
>> Consider batching it up or even sending individually. Personally I'm
>> annoyed when I receive a email where I'm one of dozens of other arbitary
>> (from my perspective) email addresses. If just one of those recipients
>> has
>> a spybot harvesting email address I've just had my email address handed
>> to
>> it.
>>
>> One approach I have used is to batch emails by organisation. Of course
>> that
>> might not help if you're emailing private individuals (since your list of
>> hotmail users could still be large for example).
>>
>>
>> --
>> Anthony Jones - MVP ASP/ASP.NET
>>
>>
>>
 >> Stay informed about: CDO.Message, SMTP Service, Max Size for TO property 
Back to top
Login to vote
"Anatoli Rockel"

External


Since: Feb 24, 2008
Posts: 2



(Msg. 5) Posted: Sun Feb 24, 2008 4:04 am
Post subject: Re: CDO.Message, SMTP Service, Max Size for TO property [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

"vbphil" <vbphil.DeleteThis@online.nospam> schrieb im Newsbeitrag
news:A24581CF-3F5F-43DF-B529-D3EFB1DC0062@microsoft.com...
> So, I have a VB6 program running on a Win2003 64Bit server that sends
> email
> using CDO.Message. The scope of the program is expanding to where a single
> email message may have to be sent to several hundred email addresses.
>
> The program creates a list of users logged into a particular program and
> sends them a status email message. The possible user count is going up to
> several hundred so I'm wondering if there is a restriction on how long the
> TO
> property string can be in the CDO.Message component. Should I take steps
> to
> send out several duplicate emails with a reduced set of TO addresses?
>
> Set oNewMail = New CDO.Message
> oNewMail.Subject = "subject line"
> oNewMail.TextBody = "message text"
> oNewMail.To = sTo
> oNewMail.From = sFrom
> oNewMail.Send
> Set oNewMail = Nothing
>
>
>
> Thanks, -phil
>
>
> --
> no place like 127.0.0.1
 >> Stay informed about: CDO.Message, SMTP Service, Max Size for TO property 
Back to top
Login to vote
Display posts from previous:   
   Web Hosting Problem Solving Community! (Home) -> IIS All times are: Pacific Time (US & Canada) (change)
Page 1 of 1

 
You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum



[ Contact us | Terms of Service/Privacy Policy ]