Hi there,
I'm trying to send an email generated in ASP using CDONTS,
I've tested the mail and it all works fine, except address put into the
BCC object don't get the mail! Here's my code.
Dim Mail
Dim strFrom
Dim strTo
Dim strSubject
Dim strBody
strFrom=company_email
strTo=target_email_address
strSubject = subjectStr
strBody=bodyStr
Set Mail = CreateObject("CDONTS.NewMail"
Mail.From = strFrom
Mail.To = StrFrom
Mail.BCC = strTo
Mail.Subject = strSubject
Mail.Body = strBody
Mail.Send
set Mail = nothing
However this mail only gets sent to the 'To' recipient and not to the BCC
recipients. I got this code form Microsofts site, so I'm a tres confused :
(
TIA
I'm trying to send an email generated in ASP using CDONTS,
I've tested the mail and it all works fine, except address put into the
BCC object don't get the mail! Here's my code.
Dim Mail
Dim strFrom
Dim strTo
Dim strSubject
Dim strBody
strFrom=company_email
strTo=target_email_address
strSubject = subjectStr
strBody=bodyStr
Set Mail = CreateObject("CDONTS.NewMail"
Mail.From = strFrom
Mail.To = StrFrom
Mail.BCC = strTo
Mail.Subject = strSubject
Mail.Body = strBody
Mail.Send
set Mail = nothing
However this mail only gets sent to the 'To' recipient and not to the BCC
recipients. I got this code form Microsofts site, so I'm a tres confused :
(
TIA