vbphil
2008-02-07 15:25:01 UTC
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
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
no place like 127.0.0.1