Is it not possible to CC on an email? This seems like a relatively simple thing but I can't seem to find out how to do it. I want to send the email to the destination user and cc the originator so he/she know where the process is without needing to open up a browser.
If its not possible through the interface, can I edit the code somewhere?

Nevermind, I figured it out myself. I forgot to generate the code before editing the code.

Hi,
The CC property of the System.Web.Mail.MailMessage is not implemented in the standard mail event template, you can however edit the code to implement this, please have a look at the sample below:
The CC property of the System.Web.Mail.MailMessage is not implemented in the standard mail event template, you can however edit the code to implement this, please have a look at the sample below:
"
If IsNothing(strEmail) OrElse strEmail.Trim().Length = 0 Then
Throw New System.Exception("No Email Address was supplied, please rectify and try again.")
End If
strSubject = "Test Mail"
strBody = "This is a Test"
objMsg.From = strFrom
objMsg.To = strEmail
objMsg.Subject = strSubject
objMsg.Body = strBody
'Specify CC property
objMsg.Cc = myCCList
objSender.Send(objMsg)
End Function
Reply
Enter your username or e-mail address. We'll send you an e-mail with instructions to reset your password.