PHP DocuSign API - Set carbon copies (email)

341 Views Asked by At

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 protected]");
$cc->setName("Bob Smith");
$cc->setNote("This is a note for the CC guy");
$all_cc[] = $cc;

Then I try to feed the above into the setCarbonCopies method of the recipients object.

$recipients = new DocuSign\eSign\Model\Recipients();
$recipients->setSigners($all_signers);
$recipients->setCarbonCopies($all_cc);

I've also tried passing $cc directly into setCarbonCopies but that also doesn't work.

Where am I going wrong?

UPDATE:

So I got it to work by adding this line:

$cc->setRecipientId("XXX");

I've notice though that the email is only CC'd to the user AFTER the document has been signed. I would like to CC the user before it is signed. Not sure if that's possible.

0

There are 0 best solutions below