Sending email (recipients)



Follow-up to my original post.

Is it possible for the "objEmail.To" to lookup the values from a sqlserver
table?

At the moment, I type the email address separated by a semi-colon.

TIA~



Set objEmail = CreateObject("CDO.Message")

objEmail.From = "send@xxxxxxxx"
objEmail.To = "receive@xxxxxxxx"
objEmail.Subject = "TEST SUBJECT"
objEmail.AddAttachment "\\server\test.csv"
objEmail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configu
ration/sendusing") = 2
objEmail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configu
ration/smtpserver") = "SERVER_NAME"
objEmail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configu
ration/smtpauthenticate") = 1
objEmail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configu
ration/sendusername") = "username"
objEmail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configu
ration/sendpassword") = "userpwd"
objEmail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configu
ration/smtpserverport") = 25
objEmail.Configuration.Fields.Update
objEmail.Send

set objEmail = nothing


.



Relevant Pages

  • Re: Help sending email - additional question
    ... Follow-up to my original post below. ... Is it possible for the "objEmail.To" to lookup the values from a sqlserver ... Set objEmail = CreateObject ...
    (comp.databases.ms-sqlserver)
  • Help sending email
    ... The code is placed inside a DTS task via VBS scripting. ... Set objEmail = CreateObject ...
    (comp.databases.ms-sqlserver)