"Curt_C [MVP]" <software_AT_darkfalz.com> wrote in message
news:eX$uPFzTFHA.2532@TK2MSFTNGP10.phx.gbl...
> you are sending the TO and CC to the same address? I think that standard
> mail protocols will see its the same message and pass a single copy. Try
> testing with different TO and CC addys
>
> --
> Curt Christianson
> Site & Scripts:
http://www.Darkfalz.com > Blog:
http://blog.Darkfalz.com >
>
> "Matthew Loraditch" <mloradites AT yahoo DOT com> wrote in message
> news:uxPuVlyTFHA.1044@TK2MSFTNGP10.phx.gbl...
> I have a form mail processor from brainjar.com, I am
> using.(
http://www.brainjar.com/asp/formmail/) I have modified it slightly
> to do some things. I am trying to get it to cc a copy of the email it
> generates to the person who filled out the form. I have added bolded part
> below to the actual email sending portion of the script. However i do not
> receieve two emails, only one, the email i do receive lists the cc: in the
> headers but that receipient does not receive it?
> does anyone know why this is or what i may be doing wrong??
> Thanks Much
> Matthew Loraditch - Baltimore County Savings Bank, FSB.
>
> if mailComp = "CDOSYS" then
> set cdoMessage = Server.CreateObject("CDO.Message")
> set cdoConfig = Server.CreateObject("CDO.Configuration")
>
> cdoConfig.Fields("
http://schemas.microsoft.com/cdo/configuration/sendusing")
> = 2
>
> cdoConfig.Fields("
http://schemas.microsoft.com/cdo/configuration/smtpserver")
> = smtpServer
> cdoConfig.Fields.Update
> set cdoMessage.Configuration = cdoConfig
> cdoMessage.From = replyTo
> cdoMessage.ReplyTo = replyTo
> cdoMessage.To = recipients
> cdoMessage.CC = replyTo
> cdoMessage.Subject = subject
> cdoMessage.HtmlBody = body
> on error resume next
> cdoMessage.Send
> if Err.Number <> 0 then
> SendMail = "Email send failed: " & Err.Description & "."
> end if
> set cdoMessage = Nothing
> set cdoConfig = Nothing
> exit function
> end if
>