Widely used denotation for sending an email copy to other recipients. In contrary to a blind carbon copy, each recipient sees other recipient addresses.
Questions tagged [carbon-copy]
29 questions
10
votes
2 answers
SendGrid Cc and Bcc not working on PHP
I'm using sendgrid with php, I've used both options the client library and the curl option. So far, I've been able to send emails directly with the addTo option with no problem. But when I try to add Cc or Bcc options, the email still gets sent but…

Mike
- 485
- 1
- 4
- 14
5
votes
3 answers
sendgrid : add cc in email
I am sending email using sendgrid from my app. Now I want to add cc or bcc if user reply to my mail. How Do I do this. let me explain first. I am sending answer of user's feedback comes on my web application using my application let say I am sending…

Manish Sapkal
- 5,591
- 8
- 45
- 74
4
votes
2 answers
Add bcc to new order form for woocommerce
How can I add BCC or CC to the woo commerce, new order email?
I think this is the code that is running the new order emails: http://codepad.org/kPTpSIM0
I cant seem to find what I need on Google.
Thank you in advance.
I found this but I do not know…

LukeD1uk
- 242
- 2
- 14
4
votes
2 answers
Java Mail with To, CC and BCC
I am trying to send mail with to, cc and bcc. I am using javax.mail for achieving this. Please find below a part of my code
InternetAddress[] myToList = InternetAddress.parse("gopi.mani@xyz.com,Maimsa.SF@xyz.com");
InternetAddress[] myBccList =…

user2928305
- 85
- 1
- 1
- 9
3
votes
2 answers
PHP insert cc into mail function
Possible Duplicate:
PHP Mail, CC Field
I am using the following php to send an email. I need to add cc to my email. When I try to insert into header the html message show the raw html. What is the best way to handle a cc?
Thanks
$headers =…

rstewart
- 465
- 2
- 8
- 17
3
votes
2 answers
Microsoft Outlook adding cc to email
I currently have existing code that automates and email and sends files. I now need to add a cc. I have looked all over, but can't seem to find out with my existing code. Any help would be greatly appreciated. Thank you.
private void…

Russell Saari
- 985
- 11
- 26
- 41
3
votes
0 answers
PHP DocuSign API - Set carbon copies (email)
I'd like to CC someone with the DocuSign PHP API. This is the code I have at the moment.
$all_cc = [];
$cc = new \DocuSign\eSign\Model\CarbonCopy();
$cc->setEmail("email@domain.com");
$cc->setName("Bob Smith");
$cc->setNote("This is a note for the…

MemUya
- 347
- 3
- 13
2
votes
3 answers
Convert PHP Array to a single Variable
What I'm trying to do is parse the CC addresses out of some mail headers using PHP, they come through as an array (oddly even if its just one address). And I'd like to just convert the array into a single long variable.
So for instance if I had the…

Scott Rowley
- 486
- 1
- 7
- 30
2
votes
2 answers
Test c# email sending speed
I have a c# application that sends an email out to all employees in my database (not XPmail.)
I have over 300 employees and I was told it is a little slow. IS there anyway I can test the speed of CC'ing 300 employees and sending it out? I cant time…

tdjfdjdj
- 2,391
- 13
- 44
- 71
2
votes
2 answers
how to pass current user's email address to Google Script
I have a script behind a Google spreadsheet that sends an email once certain cells of a row is completed. The script works by sending to multiple hard coded email addresses. How can I add the current user's email address as a 2nd CC? One of the CC…

JC66
- 45
- 1
- 7
2
votes
0 answers
How to add 2 more emails to the following form
Hi can anyone please help me I want to send the form data to 2 more email address but I dont know where to add those 2 emails. The one that is already there is working perfectly.
2
votes
1 answer
Phonegap (Cordova) mailto link with CC not working
Hello I am trying to add a simple link something like:
Contact
Instead of putting each content in the respect field in the emails (to, cc, subject) the mail app in IOS puts…

Ignacio Correia
- 3,611
- 8
- 39
- 68
1
vote
1 answer
Send new order email to CC if order has items from a certain category in WooCommerce
I want to send admin new order e-mail to cc, if order has items from a parent product category:
I am using the code below but this doesn't seem to work. The mail is being sent but I receive a notification for an undefined variable. The person in CC…

Nero
- 41
- 3
1
vote
4 answers
PHP Email: To, CC
I have a PHP script that automatically send outs an email. I have it working great, but when I try to add a CC, it doesn't work. Below is my code for the email to:
$email_to = "$theData2"; // Who the email is to
$headers = "From: ".$email_from;…

John
- 11
- 1
1
vote
2 answers
PHP email form CC
I have a very simple contact form on my site, Im looking for users to be able to just put a check mark next to "CC:" to have it CC them without creating a whole new field for that they have to fill out again.
Here is the HTML: