Building Package with Multiple Signers Dynamically
Monday, October 17, 2016 at 09:52amHello,
It seems the Package Object is not too happy with if statements with in the code block. I have up to 5 potential signers, the first signer may be one of two people.
So how would I do something like this as I build the package?
.WithSettings(DocumentPackageSettingsBuilder.NewDocumentPackageSettings()) // From info .WithSenderInfo( SenderInfoBuilder.NewSenderInfo(senderEmail) .WithName( senderFirstName, senderLastName ) .WithTitle( senderTitle ) .WithCompany( senderCompany )) .WithSigner(SignerBuilder.NewSignerWithEmail("email") .WithFirstName("firstName") .WithLastName("lastname") .SigningOrder(1)) if(Agent != null) { .WithSigner(SignerBuilder.NewSignerWithEmail("[email protected]") .WithFirstName("AgentFirstName") .WithLastName("AgentLastName") .SigningOrder(2)) }
Reply to: Building Package with Multiple Signers Dynamically
Monday, October 17, 2016 at 11:34amReply to: Building Package with Multiple Signers Dynamically
Monday, October 17, 2016 at 12:24pmReply to: Building Package with Multiple Signers Dynamically
Tuesday, October 18, 2016 at 04:26amReply to: Building Package with Multiple Signers Dynamically
Tuesday, October 18, 2016 at 07:09amReply to: Building Package with Multiple Signers Dynamically
Tuesday, October 18, 2016 at 07:29am