Hi guys,
here's the mail code I'm using:
Dim objMail
Set objMail = Server.CreateObject("CDONTS.NewMail"
objMail.From = "Me"
objMail.To = "You@WhereYouAre.com"
objMail.Subject = mailsubject
objMail.MailFormat = cdoMailFormatMime
objMail.BodyFormat = cdoBodyFormatHTML
objMail.Body = mailmessage
objMail.Send
Set objMail = Nothing
How do i get two receipient names in there? Do I just add another address in the quotes, add a comma??!!
Also, are there any known issues I should be aware of if I'm including variable names in the email body?
Thanks,
jack
here's the mail code I'm using:
Dim objMail
Set objMail = Server.CreateObject("CDONTS.NewMail"
objMail.From = "Me"
objMail.To = "You@WhereYouAre.com"
objMail.Subject = mailsubject
objMail.MailFormat = cdoMailFormatMime
objMail.BodyFormat = cdoBodyFormatHTML
objMail.Body = mailmessage
objMail.Send
Set objMail = Nothing
How do i get two receipient names in there? Do I just add another address in the quotes, add a comma??!!
Also, are there any known issues I should be aware of if I'm including variable names in the email body?
Thanks,
jack