Skip to content

Commit c3cc643

Browse files
committed
Updated titles.
1 parent 0f9182d commit c3cc643

2 files changed

Lines changed: 8 additions & 4 deletions

File tree

app/eSignature/examples/eg031_bulk_send/views.py

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
"""Example 031: Send an envelope to multiple recipients"""
22

3+
import json
34
from os import path
5+
46
from docusign_esign.client.api_exception import ApiException
57
from flask import current_app as app
68
from flask import render_template, Blueprint
9+
710
from .controller import Eg031Controller
811
from ....docusign import authenticate
912
from ....ds_config import DS_CONFIG
@@ -31,9 +34,10 @@ def bulk_send():
3134

3235
# 3. Render the response
3336
return render_template("example_done.html",
34-
title="Bulk send envelope was successfully performed!",
35-
h1="Bulk send envelope was successfully performed!",
36-
message=f"""Bulk request queued to {queued} user lists.<br/>"""
37+
title="Bulk sending envelopes to multiple recipients",
38+
h1="Bulk send envelopes",
39+
message=f"""Results from BulkSend:getBulkSendBatchStatus method:<br/>""",
40+
json=json.dumps(json.dumps(response.to_dict()))
3741
)
3842

3943
except ApiException as err:

app/templates/home.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ <h4 id="example030">30. <a href="eg030">Apply a brand and template to an envelop
284284

285285

286286
<h2>Bulk operations</h2>
287-
<h4 id="example031">31. <a href="eg031">Bulk send envelopes</a></h4>
287+
<h4 id="example031">31. <a href="eg031">Bulk sending envelopes to multiple recipients</a></h4>
288288
<p>
289289
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, it initiates bulk envelope sending.
290290
</p>

0 commit comments

Comments
 (0)