{% extends "base.html" %} {% block content %}

9. Send an envelope using a template

The envelope is defined by the template. The signer and cc recipient name and email are used to fill in the template's roles.

This example demonstrates a common pattern for DocuSign integrations: envelopes will be sent programmatically, based on a template. If the template definition needs to be updated, the DocuSign web tool can be used to easily update the template, thus avoiding the need to make software changes.

{% if show_doc %}

Documentation about this example.

{% endif %}

API method used: Envelopes::create.

View source file {{ source_file }} on GitHub.

{% if template_ok %}

The template you created via example 8 will be used.

We'll never share your email with anyone else.
The email for the cc recipient must be different from the signer's email.
{% else %}

Problem: please first create the template using example 8.
Thank you.

{% endif %} {% endblock %}