|
3 | 3 | <h4>31. Bulk sending envelopes to multiple recipients.</h4> |
4 | 4 |
|
5 | 5 | <p> |
6 | | - Method BulkSend::createBulkSendList creates a bulk send list that you can use to send an envelope to up to 1,000 recipients at once. |
| 6 | + Demonstrates how to send envelopes in bulk to multiple recipients. First, this example creates a bulk send recipients list, then creates an envelope. After that, |
| 7 | + it initiates bulk envelope sending. |
7 | 8 | </p> |
8 | 9 |
|
9 | 10 | <% include ../../partials/docBody %> |
10 | 11 |
|
11 | 12 | <p> |
12 | 13 | API methods used: |
13 | | - <a target="_blank" href="https://developers.docusign.com/docs/esign-rest-api/reference/envelopes/enveloperecipients/create/">EnvelopeRecipients::create</a>, |
14 | | - <a target="_blank" href="https://developers.docusign.com/docs/esign-rest-api/reference/envelopes/envelopes/create/">Envelopes::create</a>, |
15 | | - <a target="_blank" href="https://developers.docusign.com/esign-rest-api/reference/BulkEnvelopes/BulkEnvelopes/get">BulkEnvelopes::get</a>, |
16 | | - <a target="_blank" href="https://developers.docusign.com/esign-rest-api/reference/Envelopes/EnvelopeCustomFields/create">EnvelopeCustomFields::create</a>, |
17 | | - <a target="_blank" href="https://developers.docusign.com/esign-rest-api/reference/BulkEnvelopes/BulkSend/createBulkSendList">BulkSend::createBulkSendList</a> |
18 | | - <a target="_blank" href="https://developers.docusign.com/docs/esign-rest-api/reference/envelopes/enveloperecipients/create/">EnvelopeRecipients::create</a>. |
| 14 | + <a target="_blank" href="https://developers.docusign.com/docs/esign-rest-api/reference/bulkenvelopes/bulksend/createbulksendlist/">BulkSend:createBulkSendList</a>, |
| 15 | + <a target="_blank" href="https://developers.docusign.com/docs/esign-rest-api/reference/envelopes/envelopes/create/">Envelopes:create</a>, |
| 16 | + <a target="_blank" href="https://developers.docusign.com/docs/esign-rest-api/reference/envelopes/envelopecustomfields/create/">EnvelopeCustomFields:create</a>, |
| 17 | + <a target="_blank" href="https://developers.docusign.com/docs/esign-rest-api/reference/bulkenvelopes/bulksend/createbulksendrequest/">BulkSend:createBulkSendRequest</a>, |
| 18 | + <a target="_blank" href="https://developers.docusign.com/docs/esign-rest-api/reference/bulkenvelopes/bulksend/getbulksendbatchstatus/">BulkSend:getBulkSendBatchStatus</a> |
19 | 19 | </p> |
20 | 20 |
|
21 | 21 |
|
22 | 22 | <% include ../../partials/gitSource %> |
23 | 23 |
|
24 | 24 | <form action="" class="eg" method="post" data-busy="form"> |
25 | 25 |
|
26 | | - <h5 class="mt-4"> Bulk copy #1</h5> |
27 | 26 | <div class="row"> |
28 | 27 | <div class="col-md-6 column"> |
29 | | - <div class='form-group'> |
30 | | - <label for= "">Signer name</label > |
31 | | - <input type = 'text' name = "signerName1" id = "signerName1" placeholder = "Bob" required class='form-control'/> |
32 | | - </div> |
33 | | - <div class='form-group'> |
34 | | - <label for= "">Signer Email</label > |
35 | | - <input type = 'mail' name = "signerEmail1" id = "signerEmail1" placeholder = "bob@mail.com" required class='form-control'/> |
36 | | - </div> |
37 | | - </div> |
38 | | - <div class="col-md-6 column"> |
39 | | - <div class='form-group'> |
40 | | - <label for= "">CC name</label > |
41 | | - <input type = 'text' name = "ccName1" id = "ccName1" placeholder = "Alice" required class='form-control'/> |
42 | | - </div> |
43 | | - <div class='form-group'> |
44 | | - <label for= "">CC Email</label > |
45 | | - <input type = 'mail' name = "ccEmail1" id = "ccEmail1" placeholder = "alice@mail.com" required class='form-control'/> |
46 | | - </div> |
47 | | - </div> |
48 | | - </div> |
49 | | - |
50 | | - <h5 class="mt-4"> Bulk copy #2</h5> |
51 | | - <div class="row"> |
52 | | - <div class="col-md-6 column"> |
53 | | - <div class='form-group'> |
54 | | - <label for= "">Signer name</label > |
55 | | - <input type = 'text' name = "signerName2" id = "signerName2" placeholder = "Eve" required class='form-control'/> |
56 | | - </div> |
| 28 | + <h5 class="mt-4"> Bulk copy #1</h5> |
57 | 29 | <div class='form-group'> |
58 | 30 | <label for= "">Signer Email</label > |
59 | | - <input type = 'mail' name = "signerEmail2" id = "signerEmail2" placeholder = "eve@mail.com" required class='form-control'/> |
| 31 | + <input type = 'mail' name = "signerEmail1" id = "signerEmail1" placeholder = "bob@mail.com" required class='form-control'/> |
60 | 32 | </div> |
61 | | - </div> |
62 | | - <div class="col-md-6 column"> |
63 | 33 | <div class='form-group'> |
64 | | - <label for= "">CC name</label > |
65 | | - <input type = 'text' name = "ccName2" id = "ccName2" placeholder = "Ted" required class='form-control'/> |
| 34 | + <label for= "">Signer Name</label > |
| 35 | + <input type = 'text' name = "signerName1" id = "signerName1" placeholder = "Bob" required class='form-control'/> |
66 | 36 | </div> |
67 | 37 | <div class='form-group'> |
68 | 38 | <label for= "">CC Email</label > |
69 | | - <input type = 'mail' name = "ccEmail2" id = "ccEmail2" placeholder = "ted@mail.com" required class='form-control'/> |
| 39 | + <input type = 'mail' name = "ccEmail1" id = "ccEmail1" placeholder = "alice@mail.com" required class='form-control'/> |
70 | 40 | </div> |
| 41 | + <div class='form-group'> |
| 42 | + <label for= "">CC Name</label > |
| 43 | + <input type = 'text' name = "ccName1" id = "ccName1" placeholder = "Alice" required class='form-control'/> |
| 44 | + </div> |
| 45 | + </div> |
| 46 | + |
| 47 | + <div class="col-md-6 column"> |
| 48 | + <h5 class="mt-4"> Bulk copy #2</h5> |
| 49 | + <div class='form-group'> |
| 50 | + <label for= "">Signer Email</label > |
| 51 | + <input type = 'mail' name = "signerEmail2" id = "signerEmail2" placeholder = "eve@mail.com" required class='form-control'/> |
| 52 | + </div> |
| 53 | + <div class='form-group'> |
| 54 | + <label for= "">Signer Name</label > |
| 55 | + <input type = 'text' name = "signerName2" id = "signerName2" placeholder = "Eve" required class='form-control'/> |
| 56 | + </div> |
| 57 | + <div class='form-group'> |
| 58 | + <label for= "">CC Email</label > |
| 59 | + <input type = 'mail' name = "ccEmail2" id = "ccEmail2" placeholder = "ted@mail.com" required class='form-control'/> |
| 60 | + </div> |
| 61 | + <div class='form-group'> |
| 62 | + <label for= "">CC Name</label > |
| 63 | + <input type = 'text' name = "ccName2" id = "ccName2" placeholder = "Ted" required class='form-control'/> |
| 64 | + </div> |
71 | 65 | </div> |
72 | 66 | </div> |
73 | 67 |
|
|
0 commit comments