From 7c0804b4f9fb850c64e05793eb5472c2c6387716 Mon Sep 17 00:00:00 2001 From: Harsha Rahul Boggaram Date: Fri, 30 Oct 2020 16:04:23 -0700 Subject: [PATCH] Version 3.7.0 release (#93) * Version v3.7.0-v2.1-20.3.01 release * Update .travis.yml * Update README.md Co-authored-by: DevCenter-DocuSign --- CHANGELOG.md | 8 + docusign_esign/apis/accounts_api.py | 45 +- docusign_esign/client/api_response.py | 29 +- setup.py | 2 +- test/docs/brand.xml | 2936 +++++++++++++++++++++++++ test/unit_tests.py | 31 + 6 files changed, 3027 insertions(+), 24 deletions(-) create mode 100644 test/docs/brand.xml diff --git a/CHANGELOG.md b/CHANGELOG.md index 57fcbe0a..8cf724d5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [DocuSign Support Center](https://support.docusign.com/en/releasenotes/) for Product Release Notes. +## [3.7.1] - eSignature API v2.1-20.3.01 - 2020-10-30 +### Changed +- Added support for version v2.1-20.3.01 of the DocuSign eSignature API. +- Updated the SDK release version. +### Fixed +- DCM-3866, Added support for updateBrandResourcesByContentType function to take in file to upload. +- DCM-3468, Template get working, added test case for catching regression in future. + ## [3.6.0] - eSignature API v2.1-20.3.00 - 2020-09-24 ### Changed - Added support for version v2.1-20.3.00 of the DocuSign eSignature API. diff --git a/docusign_esign/apis/accounts_api.py b/docusign_esign/apis/accounts_api.py index 79ebc43e..9cd3511f 100644 --- a/docusign_esign/apis/accounts_api.py +++ b/docusign_esign/apis/accounts_api.py @@ -267,8 +267,8 @@ def create_brand(self, account_id, **kwargs): :param callback function: The callback function for asynchronous request. (optional) - :param str account_id: The external account number (int) or account ID Guid. (required) - :param Brand brand: + :param str account_id: The external account number (int) or account ID GUID. (required) + :param Brand brand: :return: BrandsResponse If the method is called asynchronously, returns the request thread. @@ -294,8 +294,8 @@ def create_brand_with_http_info(self, account_id, **kwargs): :param callback function: The callback function for asynchronous request. (optional) - :param str account_id: The external account number (int) or account ID Guid. (required) - :param Brand brand: + :param str account_id: The external account number (int) or account ID GUID. (required) + :param Brand brand: :return: BrandsResponse If the method is called asynchronously, returns the request thread. @@ -6513,7 +6513,7 @@ def update_brand_logo_by_type_with_http_info(self, account_id, brand_id, logo_ty _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def update_brand_resources_by_content_type(self, account_id, brand_id, resource_content_type, **kwargs): + def update_brand_resources_by_content_type(self, account_id, brand_id, resource_content_type, file_xml, **kwargs): """ Uploads a branding resource file. This method makes a synchronous HTTP request by default. To make an @@ -6522,25 +6522,26 @@ def update_brand_resources_by_content_type(self, account_id, brand_id, resource_ >>> def callback_function(response): >>> pprint(response) >>> - >>> thread = api.update_brand_resources_by_content_type(account_id, brand_id, resource_content_type, callback=callback_function) + >>> thread = api.update_brand_resources_by_content_type(account_id, brand_id, resource_content_type, file_xml, callback=callback_function) :param callback function: The callback function for asynchronous request. (optional) - :param str account_id: The external account number (int) or account ID Guid. (required) - :param str brand_id: The unique identifier of a brand. (required) - :param str resource_content_type: (required) + :param str account_id: The external account number (int) or account ID GUID. (required) + :param str brand_id: The id of the brand. (required) + :param str resource_content_type: The type of brand resource file that you are updating. Valid values are: - `sending` - `signing` - `email` - `signing_captive` (required) + :param file file_xml: Brand resource XML file. (required) :return: BrandResources If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('callback'): - return self.update_brand_resources_by_content_type_with_http_info(account_id, brand_id, resource_content_type, **kwargs) + return self.update_brand_resources_by_content_type_with_http_info(account_id, brand_id, resource_content_type, file_xml, **kwargs) else: - (data) = self.update_brand_resources_by_content_type_with_http_info(account_id, brand_id, resource_content_type, **kwargs) + (data) = self.update_brand_resources_by_content_type_with_http_info(account_id, brand_id, resource_content_type, file_xml, **kwargs) return data - def update_brand_resources_by_content_type_with_http_info(self, account_id, brand_id, resource_content_type, **kwargs): + def update_brand_resources_by_content_type_with_http_info(self, account_id, brand_id, resource_content_type, file_xml, **kwargs): """ Uploads a branding resource file. This method makes a synchronous HTTP request by default. To make an @@ -6549,19 +6550,20 @@ def update_brand_resources_by_content_type_with_http_info(self, account_id, bran >>> def callback_function(response): >>> pprint(response) >>> - >>> thread = api.update_brand_resources_by_content_type_with_http_info(account_id, brand_id, resource_content_type, callback=callback_function) + >>> thread = api.update_brand_resources_by_content_type_with_http_info(account_id, brand_id, resource_content_type, file_xml, callback=callback_function) :param callback function: The callback function for asynchronous request. (optional) - :param str account_id: The external account number (int) or account ID Guid. (required) - :param str brand_id: The unique identifier of a brand. (required) - :param str resource_content_type: (required) + :param str account_id: The external account number (int) or account ID GUID. (required) + :param str brand_id: The id of the brand. (required) + :param str resource_content_type: The type of brand resource file that you are updating. Valid values are: - `sending` - `signing` - `email` - `signing_captive` (required) + :param file file_xml: Brand resource XML file. (required) :return: BrandResources If the method is called asynchronously, returns the request thread. """ - all_params = ['account_id', 'brand_id', 'resource_content_type'] + all_params = ['account_id', 'brand_id', 'resource_content_type', 'file_xml'] all_params.append('callback') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -6585,6 +6587,9 @@ def update_brand_resources_by_content_type_with_http_info(self, account_id, bran # verify the required parameter 'resource_content_type' is set if ('resource_content_type' not in params) or (params['resource_content_type'] is None): raise ValueError("Missing the required parameter `resource_content_type` when calling `update_brand_resources_by_content_type`") + # verify the required parameter 'file_xml' is set + if ('file_xml' not in params) or (params['file_xml'] is None): + raise ValueError("Missing the required parameter `file_xml` when calling `update_brand_resources_by_content_type`") collection_formats = {} @@ -6604,12 +6609,18 @@ def update_brand_resources_by_content_type_with_http_info(self, account_id, bran form_params = [] local_var_files = {} + if 'file_xml' in params: + local_var_files['file.xml'] = params['file_xml'] body_params = None # HTTP header `Accept` header_params['Accept'] = self.api_client.\ select_header_accept(['application/json']) + # HTTP header `Content-Type` + header_params['Content-Type'] = self.api_client.\ + select_header_content_type(['multipart/form-data']) + # Authentication setting auth_settings = [] diff --git a/docusign_esign/client/api_response.py b/docusign_esign/client/api_response.py index a98fe924..0fc81fd8 100644 --- a/docusign_esign/client/api_response.py +++ b/docusign_esign/client/api_response.py @@ -152,12 +152,29 @@ def request(self, method, url, query_params=None, headers=None, # must del headers['Content-Type'], or the correct Content-Type # which generated by urllib3 will be overwritten. del headers['Content-Type'] - r = self.pool_manager.request(method, url, - fields=post_params, - encode_multipart=True, - preload_content=_preload_content, - timeout=timeout, - headers=headers) + is_content_disposition_type = False + + if len(post_params): + [k, v] = post_params[0] + [file_name, file_data, mime_type] = v + if isinstance(file_data, bytes): + headers['Content-Type'] = mime_type + headers['Content-Disposition'] = 'form-data; name="' + k + '"; filename="' + file_name + '"' + is_content_disposition_type = True + + if is_content_disposition_type: + r = self.pool_manager.request(method, url, + body=file_data, + preload_content=_preload_content, + timeout=timeout, + headers=headers) + else: + r = self.pool_manager.request(method, url, + fields=post_params, + encode_multipart=True, + preload_content=_preload_content, + timeout=timeout, + headers=headers) # Pass a `string` parameter directly in the body to support # other content types than Json when `body` argument is provided # in serialized form diff --git a/setup.py b/setup.py index 6f1d7df4..c0d37c31 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ from setuptools import setup, find_packages, Command, os # noqa: H301 NAME = "docusign-esign" -VERSION = "3.7.0rc1" +VERSION = "3.7.1" # To install the library, run the following # # python setup.py install diff --git a/test/docs/brand.xml b/test/docs/brand.xml new file mode 100644 index 00000000..d10e8f79 --- /dev/null +++ b/test/docs/brand.xml @@ -0,0 +1,2936 @@ + + + +Hello [[Data:SenderName]], + +[[Data:RecipientName]] was unable to pass the security check, and was therefore unable to activate their account. + +To unlock the activation, go to preferences screen, select the 'Manage Users' option, select the user, and click 'Send Activation'. You will have the opportunity to re-enter the same or new code, or send without an access code. + +Be sure to communicate the access code to the user. + +This message was sent to you by [[Data:SenderName]] who is using the DocuSign Electronic Signature Service. If you would rather not receive email from this sender you may contact the sender with your request. + +Do Not Share This Email +This email contains a secure link to DocuSign. Please do not share this email, link, or access code with others. +[[Conditional:ExpirationUrl]]Click here to expire the above link to the document + +Questions about the Document? +If you need to modify the document or have questions about the details in the document, please reach out to the sender by emailing them directly. + +[[Conditional:ReportAbuseUrl]]Stop receiving this email +[[Conditional:ReportAbuseUrl]]Report this email [[Data:ReportAbuseUrl]] +[[Conditional:ReportAbuseUrl]]Declining to sign [[Support.DecliningToSignUrl]] +[[Conditional:ReportAbuseUrl]]Managing notifications [[Support.ManagingNotificationsUrl]] + +If you are having trouble signing the document, please visit the Help with Signing page on our Support Center. +https://support.docusign.com/articles/How-do-I-sign-a-DocuSign-document-Basic-Signing + + +Account Activation Failed + + +Dear [[Data:UserName]], + +Thank you for being a DocuSign subscriber. We are unable to process your payment of [[Data:PaymentCurrency]] [[Data:PaymentAmount]] on [[Data:PaymentDate]] for your DocuSign subscription because the payment information we have on file is incorrect or outdated. + +To continue enjoying full access to your account, please update your payment information by logging in to your DocuSign account (https://admin.docusign.com/authenticate?goTo=billing) and following these instructions (https://support.docusign.com/articles/How-do-I-update-my-credit-card-information). + +UPDATE PAYMENT INFORMATION, +[[Data:QuickURL]] + +This message was sent to you by [[Data:SenderName]] who is using the DocuSign Electronic Signature Service. If you would rather not receive email from this sender you may contact the sender with your request. + +Do Not Share This Email +This email contains a secure link to DocuSign. Please do not share this email, link, or access code with others. +[[Conditional:ExpirationUrl]]Click here to expire the above link to the document + +Questions about the Document? +If you need to modify the document or have questions about the details in the document, please reach out to the sender by emailing them directly. + +[[Conditional:ReportAbuseUrl]]Stop receiving this email +[[Conditional:ReportAbuseUrl]]Report this email [[Data:ReportAbuseUrl]] +[[Conditional:ReportAbuseUrl]]Declining to sign [[Support.DecliningToSignUrl]] +[[Conditional:ReportAbuseUrl]]Managing notifications [[Support.ManagingNotificationsUrl]] + +If you are having trouble signing the document, please visit the Help with Signing page on our Support Center. +https://support.docusign.com/articles/How-do-I-sign-a-DocuSign-document-Basic-Signing + + +Your payment to DocuSign was declined + + +Hello [[Data:RecipientName]], + +A payment gateway account that you connected to your DocuSign account has become disconnected. DocuSign can no longer process payment transactions using that payment gateway account. If you intended to disconnect that payment gateway account, no action is necessary. Any envelopes or templates with payment requests using that payment gateway account cannot be completed unless you remove the payment request or edit it to use a different payment gateway account. + +For instructions on how to reconnect your disconnected payment gateway account, see Reconnecting a disconnected payment gateway account. + + Account change made on [[Data:PaymentGatewayAccountModifiedTime]] [[Data:TimeZone]]. + +[[Data:QuickURL]] + +If clicking the link does not work, you can highlight and copy the entire line above and paste it into your browser to get started. + +About DocuSign + +If you have questions about your account, payment gateway account configurations, or audit logs, here is some documentation you may find useful: + +No Content, No Content + +No Content, No Content + +No Content, No Content + +Sign documents electronically in just minutes. It's safe, secure, and legally binding. Whether you're in an office, at home, on-the-go -- or even across the globe -- DocuSign provides a professional trusted solution for Digital Transaction Management™. + + +Notice of Payment Gateway Account Configuration Change in DocuSign + + +Hello [[Data:RecipientName]], + +Someone with access to your DocuSign account has modified the following payment gateway account configuration: [[Data:PaymentGatewayAccountDisplayName]]. + +If you did not modify this payment gateway account configuration, for security purposes, please review your account settings and audit logs. + + Account change made on [[Data:PaymentGatewayAccountModifiedTime]] [[Data:TimeZone]]. + +[[Data:QuickURL]] + +If clicking the link does not work, you can highlight and copy the entire line above and paste it into your browser to get started. + +About DocuSign + +If you have questions about your account, payment gateway account configurations, or audit logs, here is some documentation you may find useful: + +No Content, No Content + +No Content, No Content + +No Content, No Content + +Sign documents electronically in just minutes. It's safe, secure, and legally binding. Whether you're in an office, at home, on-the-go -- or even across the globe -- DocuSign provides a professional trusted solution for Digital Transaction Management™. + + +Notice of Payment Gateway Account Configuration Change in DocuSign + + +Hello [[Data:RecipientName]], + +[[Data:EmailBlurb]] + +[[Data:RecipientNote]] + +No Content + +[[Data:QuickURL]] + +If clicking the link does not work, you can highlight and copy the entire line above and paste it into your browser to get started. + +This message was sent to you by [[Data:SenderName]] who is using the DocuSign Electronic Signature Service. If you would rather not receive email from this sender you may contact the sender with your request. + +Do Not Share This Email +This email contains a secure link to DocuSign. Please do not share this email, link, or access code with others. +[[Conditional:ExpirationUrl]]Click here to expire the above link to the document + +Questions about the Document? +If you need to modify the document or have questions about the details in the document, please reach out to the sender by emailing them directly. + +[[Conditional:ReportAbuseUrl]]Stop receiving this email +[[Conditional:ReportAbuseUrl]]Report this email [[Data:ReportAbuseUrl]] +[[Conditional:ReportAbuseUrl]]Declining to sign [[Support.DecliningToSignUrl]] +[[Conditional:ReportAbuseUrl]]Managing notifications [[Support.ManagingNotificationsUrl]] + +If you are having trouble signing the document, please visit the Help with Signing page on our Support Center. +https://support.docusign.com/articles/How-do-I-sign-a-DocuSign-document-Basic-Signing + + +[[Data:SubjectInput]] + + +Hello [[Data:RecipientName]], + +This email message has been sent because you have activated the email BCC archiving feature for your account. + +[[Data:QuickURL]] + +If clicking the link does not work, you can highlight and copy the entire line above and paste it into your browser to get started. + +This message was sent to you by [[Data:SenderName]] who is using the DocuSign Electronic Signature Service. If you would rather not receive email from this sender you may contact the sender with your request. + +Do Not Share This Email +This email contains a secure link to DocuSign. Please do not share this email, link, or access code with others. +[[Conditional:ExpirationUrl]]Click here to expire the above link to the document + +Questions about the Document? +If you need to modify the document or have questions about the details in the document, please reach out to the sender by emailing them directly. + +[[Conditional:ReportAbuseUrl]]Stop receiving this email +[[Conditional:ReportAbuseUrl]]Report this email [[Data:ReportAbuseUrl]] +[[Conditional:ReportAbuseUrl]]Declining to sign [[Support.DecliningToSignUrl]] +[[Conditional:ReportAbuseUrl]]Managing notifications [[Support.ManagingNotificationsUrl]] + +If you are having trouble signing the document, please visit the Help with Signing page on our Support Center. +https://support.docusign.com/articles/How-do-I-sign-a-DocuSign-document-Basic-Signing + + +DocuSign Account BCC Activation Confirmation + + +Hello [[Data:RecipientName]], + +No Content + +No Content + +[[Data:EmailBlurb]] + +[[Conditional:RecipientNote]]Notes + +[[Conditional:RecipientNote]][[Data:RecipientNote]] + +[[Data:QuickURL]] + +If clicking the link does not work, you can highlight and copy the entire line above and paste it into your browser to get started. + +This message was sent to you by [[Data:SenderName]] who is using the DocuSign Electronic Signature Service. If you would rather not receive email from this sender you may contact the sender with your request. + +Do Not Share This Email +This email contains a secure link to DocuSign. Please do not share this email, link, or access code with others. +[[Conditional:ExpirationUrl]]Click here to expire the above link to the document + +Questions about the Document? +If you need to modify the document or have questions about the details in the document, please reach out to the sender by emailing them directly. + +[[Conditional:ReportAbuseUrl]]Stop receiving this email +[[Conditional:ReportAbuseUrl]]Report this email [[Data:ReportAbuseUrl]] +[[Conditional:ReportAbuseUrl]]Declining to sign [[Support.DecliningToSignUrl]] +[[Conditional:ReportAbuseUrl]]Managing notifications [[Support.ManagingNotificationsUrl]] + +If you are having trouble signing the document, please visit the Help with Signing page on our Support Center. +https://support.docusign.com/articles/How-do-I-sign-a-DocuSign-document-Basic-Signing + + +[[Data:SubjectInput]] + + +Hello [[Data:RecipientName]], + +[[Data:EmailBlurb]] + +[[Conditional:RecipientNote]]Notes + +[[Conditional:RecipientNote]][[Data:RecipientNote]] + +No Content + +[[Data:QuickURL]] + +If clicking the link does not work, you can highlight and copy the entire line above and paste it into your browser to get started. + +This message was sent to you by [[Data:SenderName]] who is using the DocuSign Electronic Signature Service. If you would rather not receive email from this sender you may contact the sender with your request. + +Do Not Share This Email +This email contains a secure link to DocuSign. Please do not share this email, link, or access code with others. +[[Conditional:ExpirationUrl]]Click here to expire the above link to the document + +Questions about the Document? +If you need to modify the document or have questions about the details in the document, please reach out to the sender by emailing them directly. + +[[Conditional:ReportAbuseUrl]]Stop receiving this email +[[Conditional:ReportAbuseUrl]]Report this email [[Data:ReportAbuseUrl]] +[[Conditional:ReportAbuseUrl]]Declining to sign [[Support.DecliningToSignUrl]] +[[Conditional:ReportAbuseUrl]]Managing notifications [[Support.ManagingNotificationsUrl]] + +If you are having trouble signing the document, please visit the Help with Signing page on our Support Center. +https://support.docusign.com/articles/How-do-I-sign-a-DocuSign-document-Basic-Signing + + +[[Data:SubjectInput]] + + +Hello [[Data:RecipientName]], + +DocuSign Support has received your request to change the Email Address that you use with [[Data:ProductName]]. + +To confirm that you have access to your new email address, please click the button. + +[[Data:QuickURL]] + +If clicking the link does not work, you can highlight and copy the entire line above and paste it into your browser to get started. + +This message was sent to you by [[Data:SenderName]] who is using the DocuSign Electronic Signature Service. If you would rather not receive email from this sender you may contact the sender with your request. + +Do Not Share This Email +This email contains a secure link to DocuSign. Please do not share this email, link, or access code with others. +[[Conditional:ExpirationUrl]]Click here to expire the above link to the document + +Questions about the Document? +If you need to modify the document or have questions about the details in the document, please reach out to the sender by emailing them directly. + +[[Conditional:ReportAbuseUrl]]Stop receiving this email +[[Conditional:ReportAbuseUrl]]Report this email [[Data:ReportAbuseUrl]] +[[Conditional:ReportAbuseUrl]]Declining to sign [[Support.DecliningToSignUrl]] +[[Conditional:ReportAbuseUrl]]Managing notifications [[Support.ManagingNotificationsUrl]] + +If you are having trouble signing the document, please visit the Help with Signing page on our Support Center. +https://support.docusign.com/articles/How-do-I-sign-a-DocuSign-document-Basic-Signing + + +Confirm your Email Address Change + + +Hello [[Data:RecipientName]], + +DocuSign Support has received a request to change the Email Address that you use with [[Data:ProductName]]. A confirmation email was sent to the new email address, '[[Data:NewEmail]]'. + +If you did not request to change your email address, you should immediately notify DocuSign Support at Support Center. + +This message was sent to you by [[Data:SenderName]] who is using the DocuSign Electronic Signature Service. If you would rather not receive email from this sender you may contact the sender with your request. + +Do Not Share This Email +This email contains a secure link to DocuSign. Please do not share this email, link, or access code with others. +[[Conditional:ExpirationUrl]]Click here to expire the above link to the document + +Questions about the Document? +If you need to modify the document or have questions about the details in the document, please reach out to the sender by emailing them directly. + +[[Conditional:ReportAbuseUrl]]Stop receiving this email +[[Conditional:ReportAbuseUrl]]Report this email [[Data:ReportAbuseUrl]] +[[Conditional:ReportAbuseUrl]]Declining to sign [[Support.DecliningToSignUrl]] +[[Conditional:ReportAbuseUrl]]Managing notifications [[Support.ManagingNotificationsUrl]] + +If you are having trouble signing the document, please visit the Help with Signing page on our Support Center. +https://support.docusign.com/articles/How-do-I-sign-a-DocuSign-document-Basic-Signing + + +Notice of Email Address Change + + +Hello [[Data:RecipientName]], + +DocuSign Support has received your request to change the password you use with [[Data:ProductName]]. + +To change your password, please click the button. + +[[Data:QuickURL]] + +If clicking the link does not work, you can highlight and copy the entire line above and paste it into your browser to get started. + +This message was sent to you by [[Data:SenderName]] who is using the DocuSign Electronic Signature Service. If you would rather not receive email from this sender you may contact the sender with your request. + +Do Not Share This Email +This email contains a secure link to DocuSign. Please do not share this email, link, or access code with others. +[[Conditional:ExpirationUrl]]Click here to expire the above link to the document + +Questions about the Document? +If you need to modify the document or have questions about the details in the document, please reach out to the sender by emailing them directly. + +[[Conditional:ReportAbuseUrl]]Stop receiving this email +[[Conditional:ReportAbuseUrl]]Report this email [[Data:ReportAbuseUrl]] +[[Conditional:ReportAbuseUrl]]Declining to sign [[Support.DecliningToSignUrl]] +[[Conditional:ReportAbuseUrl]]Managing notifications [[Support.ManagingNotificationsUrl]] + +If you are having trouble signing the document, please visit the Help with Signing page on our Support Center. +https://support.docusign.com/articles/How-do-I-sign-a-DocuSign-document-Basic-Signing + + +Changing your Password + + +Hello [[Data:SenderName]], + +[[Data:OriginalRecipientName]] will be sent a copy of the document when all parties have completed signing. + +[[Conditional:ShowDigitalCertSafe]]Step 1: Confirm you have a valid digital certificate with [[Data:DigitalCertificateIssuer]] and log in to your account. If you don't have one, please sign up for one now using this link: [[Data:DigitalCertificateIssuerLink]] +[[Conditional:ShowDigitalCertSafe]]Step 2: Review and sign your documents. You will be asked to log in to your digital certificate account during the signing process. +[[Conditional:ShowDigitalCertExpress]]The Sender has requested that this document be digitally signed via the application of a DocuSign Express Digital Certificate. This digital certificate will be automatically issued and applied for you during the signing process. +[[Conditional:ShowDigitalCertOpenTrust]]The Sender has required this document to be digitally signed via the application of an OpenTrust Protect & Sign digital signature. A digital certificate will be automatically issued and applied for the Signer during the signing process. +[[Conditional:ShowDigitalCertICPBrazil]]The Sender has required this document to be digitally signed via a ICP-Brazil Digital Signature. The Signer will be asked to select their digital certificate during the signing process. +[[Conditional:ShowDigitalCertNovartis]]The Sender has required this document to be digitally signed via a Novartis Digital Signature. The Signer will be asked to select their digital certificate during the signing process. + +No Content + +[[Data:QuickURL]] + +If clicking the link does not work, you can highlight and copy the entire line above and paste it into your browser to get started. + +This message was sent to you by [[Data:SenderName]] who is using the DocuSign Electronic Signature Service. If you would rather not receive email from this sender you may contact the sender with your request. + +Do Not Share This Email +This email contains a secure link to DocuSign. Please do not share this email, link, or access code with others. +[[Conditional:ExpirationUrl]]Click here to expire the above link to the document + +Questions about the Document? +If you need to modify the document or have questions about the details in the document, please reach out to the sender by emailing them directly. + +[[Conditional:ReportAbuseUrl]]Stop receiving this email +[[Conditional:ReportAbuseUrl]]Report this email [[Data:ReportAbuseUrl]] +[[Conditional:ReportAbuseUrl]]Declining to sign [[Support.DecliningToSignUrl]] +[[Conditional:ReportAbuseUrl]]Managing notifications [[Support.ManagingNotificationsUrl]] + +If you are having trouble signing the document, please visit the Help with Signing page on our Support Center. +https://support.docusign.com/articles/How-do-I-sign-a-DocuSign-document-Basic-Signing + + +Change in Signers + + +Hello [[Data:RecipientName]], + +Your copy of [[Data:Subject]] is attached + +This message was sent to you by [[Data:SenderName]] who is using DocuSign Click. If you would rather not receive email from this sender you may contact the sender with your request. + +Do Not Share This Email +This email contains a secure completed document from DocuSign. + +Questions about the Document? +If you need to modify the document or have questions about the details in the document, please reach out to the sender by emailing them directly. + +[[Conditional:ReportAbuseUrl]]Stop receiving this email +[[Conditional:ReportAbuseUrl]]Report this email [[Data:ReportAbuseUrl]] +[[Conditional:ReportAbuseUrl]]Declining to sign [[Support.DecliningToSignUrl]] +[[Conditional:ReportAbuseUrl]]Managing notifications [[Support.ManagingNotificationsUrl]] + + +Your requested copy of [[Data:Subject]] + + +Hello [[Data:RecipientName]], + + [[Data:CommentSentBy]] + + commented on + +[[Data:CommentSubject]] + +[[Conditional:QuickURL]][[Data:QuickUrl]] + +This message was sent to you by [[Data:SenderName]] who is using the DocuSign Electronic Signature Service. If you would rather not receive email from this sender you may contact the sender with your request. + +Do Not Share This Email +This email contains a secure link to DocuSign. Please do not share this email, link, or access code with others. +[[Conditional:ExpirationUrl]]Click here to expire the above link to the document + +Questions about the Document? +If you need to modify the document or have questions about the details in the document, please reach out to the sender by emailing them directly. + +[[Conditional:ReportAbuseUrl]]Stop receiving this email +[[Conditional:ReportAbuseUrl]]Report this email [[Data:ReportAbuseUrl]] +[[Conditional:ReportAbuseUrl]]Declining to sign [[Support.DecliningToSignUrl]] +[[Conditional:ReportAbuseUrl]]Managing notifications [[Support.ManagingNotificationsUrl]] + +If you are having trouble signing the document, please visit the Help with Signing page on our Support Center. +https://support.docusign.com/articles/How-do-I-sign-a-DocuSign-document-Basic-Signing + + +New comment on [[Data:SubjectInput]] + + +Hello [[Data:RecipientName]], + + [[Data:CommentSentBy]] + + commented on + +[[Data:CommentSubject]] + +[[Conditional:QuickURL]][[Data:QuickUrl]] + +This message was sent to you by [[Data:SenderName]] who is using the DocuSign Electronic Signature Service. If you would rather not receive email from this sender you may contact the sender with your request. + +Do Not Share This Email +This email contains a secure link to DocuSign. Please do not share this email, link, or access code with others. +[[Conditional:ExpirationUrl]]Click here to expire the above link to the document + +Questions about the Document? +If you need to modify the document or have questions about the details in the document, please reach out to the sender by emailing them directly. + +[[Conditional:ReportAbuseUrl]]Stop receiving this email +[[Conditional:ReportAbuseUrl]]Report this email [[Data:ReportAbuseUrl]] +[[Conditional:ReportAbuseUrl]]Declining to sign [[Support.DecliningToSignUrl]] +[[Conditional:ReportAbuseUrl]]Managing notifications [[Support.ManagingNotificationsUrl]] + +If you are having trouble signing the document, please visit the Help with Signing page on our Support Center. +https://support.docusign.com/articles/How-do-I-sign-a-DocuSign-document-Basic-Signing + + +New comment on [[Data:SubjectInput]] + + +Hello [[Data:RecipientName]], + + [[Data:CommentSentBy]] + + commented on + +[[Data:CommentSubject]] + +[[Conditional:QuickURL]][[Data:QuickUrl]] + +This message was sent to you by [[Data:SenderName]] who is using the DocuSign Electronic Signature Service. If you would rather not receive email from this sender you may contact the sender with your request. + +Do Not Share This Email +This email contains a secure link to DocuSign. Please do not share this email, link, or access code with others. +[[Conditional:ExpirationUrl]]Click here to expire the above link to the document + +Questions about the Document? +If you need to modify the document or have questions about the details in the document, please reach out to the sender by emailing them directly. + +[[Conditional:ReportAbuseUrl]]Stop receiving this email +[[Conditional:ReportAbuseUrl]]Report this email [[Data:ReportAbuseUrl]] +[[Conditional:ReportAbuseUrl]]Declining to sign [[Support.DecliningToSignUrl]] +[[Conditional:ReportAbuseUrl]]Managing notifications [[Support.ManagingNotificationsUrl]] + +If you are having trouble signing the document, please visit the Help with Signing page on our Support Center. +https://support.docusign.com/articles/How-do-I-sign-a-DocuSign-document-Basic-Signing + + +New comment on [[Data:SubjectInput]] + + +Hello [[Data:RecipientName]], + + [[Data:CommentSentBy]] + + commented on + +[[Data:CommentSubject]] + +[[Conditional:QuickURL]][[Data:QuickUrl]] + +This message was sent to you by [[Data:SenderName]] who is using the DocuSign Electronic Signature Service. If you would rather not receive email from this sender you may contact the sender with your request. + +Do Not Share This Email +This email contains a secure link to DocuSign. Please do not share this email, link, or access code with others. +[[Conditional:ExpirationUrl]]Click here to expire the above link to the document + +Questions about the Document? +If you need to modify the document or have questions about the details in the document, please reach out to the sender by emailing them directly. + +[[Conditional:ReportAbuseUrl]]Stop receiving this email +[[Conditional:ReportAbuseUrl]]Report this email [[Data:ReportAbuseUrl]] +[[Conditional:ReportAbuseUrl]]Declining to sign [[Support.DecliningToSignUrl]] +[[Conditional:ReportAbuseUrl]]Managing notifications [[Support.ManagingNotificationsUrl]] + +If you are having trouble signing the document, please visit the Help with Signing page on our Support Center. +https://support.docusign.com/articles/How-do-I-sign-a-DocuSign-document-Basic-Signing + + +New comment on [[Data:SubjectInput]] + + +Hello [[Data:RecipientName]], + + Your DocuSign verification code is: + [[Data:LoginSecurityCode]] + + We noticed a login from a new device or browser. You can verify the device with this code. + please change your password immediately to secure your account. For added security, we recommend enabling Two-Step Verification. + We didn't recognize this device or browser. You might receive this email again if you sign in from a new device or browser, you clear your cookies, or you use your browser's private mode. + No Content + +This message was sent to you by [[Data:SenderName]] who is using the DocuSign Electronic Signature Service. If you would rather not receive email from this sender you may contact the sender with your request. + +Do Not Share This Email +This email contains a secure link to DocuSign. Please do not share this email, link, or access code with others. +[[Conditional:ExpirationUrl]]Click here to expire the above link to the document + + +Verify a New Device + + +Hello [[Data:RecipientName]], + +[[Data:SenderName]] has sent you a new DocuSign document to view and sign. Please click on the link below to begin signing. + + [[Conditional:DigitalSignatureNeeded]]Your documents have been electronically signed by all the signing parties, and are ready for you to apply a digital signature to seal the documents. Please click on the link below to begin a digital signing session. + + [[Conditional:NoDigitalSignatureNeeded]]Your documents have been electronically signed by all the signing parties, and are ready for digital signing to seal the documents. You do not have to digitally sign the documents, but other signers do. When the other signers have completed digitally signing, you will be notified that the envelope is complete. + +[[Conditional:IsExpirationMail]]Expiration Pending: This document will expire on [[Data:EnvelopeExpirationDate]]. + +[[Conditional:IsEnvelopeContainingMultipleDocuments]]REVIEW DOCUMENTS +[[Conditional:IsEnvelopeContainingSingleDocument]]REVIEW DOCUMENT + +[[Data:QuickURL]] + +If clicking the link does not work, you can highlight and copy the entire line above and paste it into your browser to get started. + +This message was sent to you by [[Data:SenderName]] who is using the DocuSign Electronic Signature Service. If you would rather not receive email from this sender you may contact the sender with your request. + +Do Not Share This Email +This email contains a secure link to DocuSign. Please do not share this email, link, or access code with others. +[[Conditional:ExpirationUrl]]Click here to expire the above link to the document + +Questions about the Document? +If you need to modify the document or have questions about the details in the document, please reach out to the sender by emailing them directly. + +[[Conditional:ReportAbuseUrl]]Stop receiving this email +[[Conditional:ReportAbuseUrl]]Report this email [[Data:ReportAbuseUrl]] +[[Conditional:ReportAbuseUrl]]Declining to sign [[Support.DecliningToSignUrl]] +[[Conditional:ReportAbuseUrl]]Managing notifications [[Support.ManagingNotificationsUrl]] + +If you are having trouble signing the document, please visit the Help with Signing page on our Support Center. +https://support.docusign.com/articles/How-do-I-sign-a-DocuSign-document-Basic-Signing + + +Your document is ready to be digitally signed + + +Hello [[Data:RecipientName]], + +The documents you recently signed, [[Data:Subject]], have some recommended changes. + +[[Data:QuickURL]] + +If clicking the link does not work, you can highlight and copy the entire line above and paste it into your browser to get started. + +This message was sent to you by [[Data:SenderName]] who is using the DocuSign Electronic Signature Service. If you would rather not receive email from this sender you may contact the sender with your request. + +Do Not Share This Email +This email contains a secure link to DocuSign. Please do not share this email, link, or access code with others. +[[Conditional:ExpirationUrl]]Click here to expire the above link to the document + +Questions about the Document? +If you need to modify the document or have questions about the details in the document, please reach out to the sender by emailing them directly. + +[[Conditional:ReportAbuseUrl]]Stop receiving this email +[[Conditional:ReportAbuseUrl]]Report this email [[Data:ReportAbuseUrl]] +[[Conditional:ReportAbuseUrl]]Declining to sign [[Support.DecliningToSignUrl]] +[[Conditional:ReportAbuseUrl]]Managing notifications [[Support.ManagingNotificationsUrl]] + +If you are having trouble signing the document, please visit the Help with Signing page on our Support Center. +https://support.docusign.com/articles/How-do-I-sign-a-DocuSign-document-Basic-Signing + + +Suggested changes to '[[Data:SubjectInput]]' + + +Hello [[Data:RecipientName]], + +Hi [[Data:UserFirstName]], + +Plan Changed + +We've processed your request to change plans from [[Data:EffectiveDate]]. You're now on a [[Data:RequestedPlan]] plan. + +Number of Users + +[[Data:Seats]] + +[[Conditional:IsMultiSeats]]users + +[[Conditional:IsSingleSeat]]user + +Date Effective + +[[Data:EffectiveDate]] + +Payment Method on File + +[[Conditional:IsCreditCard]]Card + +[[Conditional:IsDirectDebitSepa]]Account + +[[Conditional:IsDirectDebitIban]]IBAN + +[[Conditional:IsPaypal]]PayPal + + ending in + +[[Data:PaymentMethod]] + +Thank you for your business. + +If you have questions or need help, visit our Support Center. + +Best Regards, + +DocuSign Customer Support + +For the latest support related information and resources, please visit our Support Center. + +DocuSign.com + +This message was sent to you by [[Data:SenderName]] who is using the DocuSign Electronic Signature Service. If you would rather not receive email from this sender you may contact the sender with your request. + +Do Not Share This Email +This email contains a secure link to DocuSign. Please do not share this email, link, or access code with others. +[[Conditional:ExpirationUrl]]Click here to expire the above link to the document + +Questions about the Document? +If you need to modify the document or have questions about the details in the document, please reach out to the sender by emailing them directly. + +[[Conditional:ReportAbuseUrl]]Stop receiving this email +[[Conditional:ReportAbuseUrl]]Report this email [[Data:ReportAbuseUrl]] +[[Conditional:ReportAbuseUrl]]Declining to sign [[Support.DecliningToSignUrl]] +[[Conditional:ReportAbuseUrl]]Managing notifications [[Support.ManagingNotificationsUrl]] + +If you are having trouble signing the document, please visit the Help with Signing page on our Support Center. +https://support.docusign.com/articles/How-do-I-sign-a-DocuSign-document-Basic-Signing + + +DocuSign Plan Change: You're now on [[Data:RequestedPlan]] + + +Hello [[Data:RecipientName]], + +Hi [[Data:UserFirstName]], + +Plan Change Request + +Your DocuSign plan change request, submitted on [[Data:CreatedDate]], has been received. + +Number of Users + +[[Data:Seats]] + +[[Conditional:IsMultiSeats]] users + +[[Conditional:IsSingleSeat]] user + +Date Effective + +[[Data:EffectiveDate]] + +Payment Method on File + +[[Conditional:IsCreditCard]]Card + +[[Conditional:IsDirectDebitSepa]]Account + +[[Conditional:IsDirectDebitIban]]IBAN + +[[Conditional:IsPaypal]]PayPal + + ending in + +[[Data:PaymentMethod]] + +We'll email you once we've processed your request. + +If you have questions or need help, visit our Support Center. + +Best Regards, + +DocuSign Customer Support + +For the latest support related information and resources, please visit our Support Center. + +DocuSign.com + +This message was sent to you by [[Data:SenderName]] who is using the DocuSign Electronic Signature Service. If you would rather not receive email from this sender you may contact the sender with your request. + +Do Not Share This Email +This email contains a secure link to DocuSign. Please do not share this email, link, or access code with others. +[[Conditional:ExpirationUrl]]Click here to expire the above link to the document + +Questions about the Document? +If you need to modify the document or have questions about the details in the document, please reach out to the sender by emailing them directly. + +[[Conditional:ReportAbuseUrl]]Stop receiving this email +[[Conditional:ReportAbuseUrl]]Report this email [[Data:ReportAbuseUrl]] +[[Conditional:ReportAbuseUrl]]Declining to sign [[Support.DecliningToSignUrl]] +[[Conditional:ReportAbuseUrl]]Managing notifications [[Support.ManagingNotificationsUrl]] + +If you are having trouble signing the document, please visit the Help with Signing page on our Support Center. +https://support.docusign.com/articles/How-do-I-sign-a-DocuSign-document-Basic-Signing + + +We've received your request to change plans + + +Hello [[Data:RecipientName]], + +Your DocuSign draft, [[Data:Subject]], has been created on your default account [[Data:AccountName]]. + +This draft contains the following document(s): [[Data:DocumentNames]] + +[[Data:EmailBlurb]] + +No Content + +[[Data:QuickURL]] + +This message was sent to you by [[Data:SenderName]] who is using the DocuSign Electronic Signature Service. If you would rather not receive email from this sender you may contact the sender with your request. + +Do Not Share This Email +This email contains a secure link to DocuSign. Please do not share this email, link, or access code with others. +[[Conditional:ExpirationUrl]]Click here to expire the above link to the document + +Questions about the Document? +If you need to modify the document or have questions about the details in the document, please reach out to the sender by emailing them directly. + +[[Conditional:ReportAbuseUrl]]Stop receiving this email +[[Conditional:ReportAbuseUrl]]Report this email [[Data:ReportAbuseUrl]] +[[Conditional:ReportAbuseUrl]]Declining to sign [[Support.DecliningToSignUrl]] +[[Conditional:ReportAbuseUrl]]Managing notifications [[Support.ManagingNotificationsUrl]] + +If you are having trouble signing the document, please visit the Help with Signing page on our Support Center. +https://support.docusign.com/articles/How-do-I-sign-a-DocuSign-document-Basic-Signing + + +DocuSign Draft Created: [[Data:FromSubject]] + + +Hello [[Data:RecipientName]], + +Your DocuSign draft, [[Data:Subject]], has been attempted and failed for email address [[Data:SenderEmail]]'. + +Please make sure the user name and email address used are correct. + +The application encountered issues while trying to generate your draft: + +[[Data:Error]] + +No Content + +This message was sent to you by [[Data:SenderName]] who is using the DocuSign Electronic Signature Service. If you would rather not receive email from this sender you may contact the sender with your request. + +Do Not Share This Email +This email contains a secure link to DocuSign. Please do not share this email, link, or access code with others. +[[Conditional:ExpirationUrl]]Click here to expire the above link to the document + +Questions about the Document? +If you need to modify the document or have questions about the details in the document, please reach out to the sender by emailing them directly. + +[[Conditional:ReportAbuseUrl]]Stop receiving this email +[[Conditional:ReportAbuseUrl]]Report this email [[Data:ReportAbuseUrl]] +[[Conditional:ReportAbuseUrl]]Declining to sign [[Support.DecliningToSignUrl]] +[[Conditional:ReportAbuseUrl]]Managing notifications [[Support.ManagingNotificationsUrl]] + +If you are having trouble signing the document, please visit the Help with Signing page on our Support Center. +https://support.docusign.com/articles/How-do-I-sign-a-DocuSign-document-Basic-Signing + + +DocuSign Draft Failed: [[Data:FromSubject]] + + +Hello [[Data:SenderName]], + +[[Data:RecipientName]] was unable to pass authentication for [[Data:Subject]]. + +No Content + +[[Data:QuickURL]] + +If clicking the link does not work, you can highlight and copy the entire line above and paste it into your browser to get started. + +This message was sent to you by [[Data:SenderName]] who is using the DocuSign Electronic Signature Service. If you would rather not receive email from this sender you may contact the sender with your request. + +Do Not Share This Email +This email contains a secure link to DocuSign. Please do not share this email, link, or access code with others. +[[Conditional:ExpirationUrl]]Click here to expire the above link to the document + +Questions about the Document? +If you need to modify the document or have questions about the details in the document, please reach out to the sender by emailing them directly. + +[[Conditional:ReportAbuseUrl]]Stop receiving this email +[[Conditional:ReportAbuseUrl]]Report this email [[Data:ReportAbuseUrl]] +[[Conditional:ReportAbuseUrl]]Declining to sign [[Support.DecliningToSignUrl]] +[[Conditional:ReportAbuseUrl]]Managing notifications [[Support.ManagingNotificationsUrl]] + +If you are having trouble signing the document, please visit the Help with Signing page on our Support Center. +https://support.docusign.com/articles/How-do-I-sign-a-DocuSign-document-Basic-Signing + + +Failed Access: [[Data:SubjectInput]] + + +From: [[Data:SenderName]] ([[Data:SenderEmail]])[[Data:SenderCompany]] + +Hello [[Data:RecipientName]], + +[[Data:EmailBlurb]] + +[[Data:SenderName]] has requested their documents to be signed and notarized. + +In order to sign and notarize the documents, you must first select a notary public. Please locate a notary public and request that they witness your signing using the 'Assign a Notary' link below. + +[[Data:AssignNotaryURL]] + +In the meantime, you can review the documents which you will be asked to sign. + +[[Data:PreviewURL]] + +No Content + +[[Data:SenderName]] + +[[Conditional:IsExpirationMail]]Expiration Pending: This document will expire on [[Data:EnvelopeExpirationDate]]. + +Visit DocuSign.com, click 'Access Documents', and enter the security code: + +This message was sent to you by [[Data:SenderName]] who is using the DocuSign Electronic Signature Service. If you would rather not receive email from this sender you may contact the sender with your request. + +Do Not Share This Email +This email contains a secure link to DocuSign. Please do not share this email, link, or access code with others. +[[Conditional:ExpirationUrl]]Click here to expire the above link to the document + +Questions about the Document? +If you need to modify the document or have questions about the details in the document, please reach out to the sender by emailing them directly. + +[[Conditional:ReportAbuseUrl]]Stop receiving this email +[[Conditional:ReportAbuseUrl]]Report this email [[Data:ReportAbuseUrl]] +[[Conditional:ReportAbuseUrl]]Declining to sign [[Support.DecliningToSignUrl]] +[[Conditional:ReportAbuseUrl]]Managing notifications [[Support.ManagingNotificationsUrl]] + +If you are having trouble signing the document, please visit the Help with Signing page on our Support Center. +https://support.docusign.com/articles/How-do-I-sign-a-DocuSign-document-Basic-Signing + + +[[Conditional:IsExpirationMail]]Expiration Pending: +[[Conditional:IsExpirationMail]]Reminder: +[[Data:SubjectInput]] + + +From: [[Data:SenderName]] ([[Data:SenderEmail]])[[Data:SenderCompany]] + +Hello [[Data:RecipientName]], + +[[Data:SenderName]] has requested that you electronically sign these documents while witnessed by a notary public. + +[[Data:EmailBlurb]] + +[[Data:RecipientNote]] + +The following notary public will contact you to schedule a time and location to sign these documents. + +[[Data:NotaryName]] +[[Data:NotaryEmail]] +[[Data:NotaryPhone]] +[[Data:NotaryAddress]] + +By proceeding with an in-person signing session, you agree to the DocuSign notary public + [[Data:NotarySignerTermsUrl]] + +Thank you! +[[Data:SenderName]] + +[[Conditional:IsExpirationMail]]Expiration Pending: This document will expire on [[Data:EnvelopeExpirationDate]]. + +[[Conditional:IsEnvelopeContainingMultipleDocuments]]REVIEW DOCUMENTS +[[Conditional:IsEnvelopeContainingSingleDocument]]REVIEW DOCUMENT + +[[Data:QuickURL]] + +If clicking the link does not work, you can highlight and copy the entire line above and paste it into your browser to get started. + +This message was sent to you by [[Data:SenderName]] who is using the DocuSign Electronic Signature Service. If you would rather not receive email from this sender you may contact the sender with your request. + +Do Not Share This Email +This email contains a secure link to DocuSign. Please do not share this email, link, or access code with others. +[[Conditional:ExpirationUrl]]Click here to expire the above link to the document + +Questions about the Document? +If you need to modify the document or have questions about the details in the document, please reach out to the sender by emailing them directly. + +[[Conditional:ReportAbuseUrl]]Stop receiving this email +[[Conditional:ReportAbuseUrl]]Report this email [[Data:ReportAbuseUrl]] +[[Conditional:ReportAbuseUrl]]Declining to sign [[Support.DecliningToSignUrl]] +[[Conditional:ReportAbuseUrl]]Managing notifications [[Support.ManagingNotificationsUrl]] + +If you are having trouble signing the document, please visit the Help with Signing page on our Support Center. +https://support.docusign.com/articles/How-do-I-sign-a-DocuSign-document-Basic-Signing + + +[[Conditional:IsExpirationMail]]Expiration Pending: +[[Conditional:IsExpirationMail]]Reminder: +[[Data:SubjectInput]] + + +Hello [[Data:RecipientName]], + +[[Data:SenderName]] has sent you a new DocuSign document to view and sign. Please click on the link below to begin signing. + +[[Conditional:RequireAccountActivation]]Please check your email for an Account Activation message. Once you activate your free account, you can review and sign your documents. + +[[Data:EmailBlurb]] + +[[Conditional:RecipientNote]]Notes + +[[Conditional:RecipientNote]][[Data:RecipientNote]] + +[[Conditional:ShowDigitalCertSafe]]Step 1: Confirm you have a valid digital certificate with [[Data:DigitalCertificateIssuer]] and log in to your account. If you don't have one, please sign up for one now using this link: [[Data:DigitalCertificateIssuerLink]] +[[Conditional:ShowDigitalCertSafe]]Step 2: Review and sign your documents. You will be asked to log in to your digital certificate account during the signing process. +[[Conditional:ShowDigitalCertExpress]]The Sender has requested that this document be digitally signed via the application of a DocuSign Express Digital Certificate. This digital certificate will be automatically issued and applied for you during the signing process. +[[Conditional:ShowDigitalCertOpenTrust]]The Sender has required this document to be digitally signed via the application of an OpenTrust Protect & Sign digital signature. A digital certificate will be automatically issued and applied for the Signer during the signing process. +[[Conditional:ShowDigitalCertICPBrazil]]The Sender has required this document to be digitally signed via a ICP-Brazil Digital Signature. The Signer will be asked to select their digital certificate during the signing process. +[[Conditional:ShowDigitalCertNovartis]]The Sender has required this document to be digitally signed via a Novartis Digital Signature. The Signer will be asked to select their digital certificate during the signing process. + +[[Conditional:IsExpirationMail]]Expiration Pending: This document will expire on [[Data:EnvelopeExpirationDate]]. + + [[Conditional:IsCFRPart11Compliant]]Part 11 Module Enabled + +[[Conditional:IsEnvelopeContainingMultipleDocuments]]REVIEW DOCUMENTS +[[Conditional:IsEnvelopeContainingSingleDocument]]REVIEW DOCUMENT + +[[Data:QuickURL]] + +If clicking the link does not work, you can highlight and copy the entire line above and paste it into your browser to get started. + +This message was sent to you by [[Data:SenderName]] who is using the DocuSign Electronic Signature Service. If you would rather not receive email from this sender you may contact the sender with your request. + +Do Not Share This Email +This email contains a secure link to DocuSign. Please do not share this email, link, or access code with others. +[[Conditional:ExpirationUrl]]Click here to expire the above link to the document + +Questions about the Document? +If you need to modify the document or have questions about the details in the document, please reach out to the sender by emailing them directly. + +[[Conditional:ReportAbuseUrl]]Stop receiving this email +[[Conditional:ReportAbuseUrl]]Report this email [[Data:ReportAbuseUrl]] +[[Conditional:ReportAbuseUrl]]Declining to sign [[Support.DecliningToSignUrl]] +[[Conditional:ReportAbuseUrl]]Managing notifications [[Support.ManagingNotificationsUrl]] + +If you are having trouble signing the document, please visit the Help with Signing page on our Support Center. +https://support.docusign.com/articles/How-do-I-sign-a-DocuSign-document-Basic-Signing + + +[[Conditional:IsExpirationMail]]Expiration Pending: +[[Conditional:IsReminderMail]]Reminder: +[[Data:SubjectInput]] + + +Hello [[Data:RecipientName]], + +[[Data:SenderName]] has corrected [[Data:DocumentNames]] + +As a result, you no longer have access. + +This message was sent to you by [[Data:SenderName]] who is using the DocuSign Electronic Signature Service. If you would rather not receive email from this sender you may contact the sender with your request. + +Do Not Share This Email +This email contains a secure link to DocuSign. Please do not share this email, link, or access code with others. +[[Conditional:ExpirationUrl]]Click here to expire the above link to the document + +Questions about the Document? +If you need to modify the document or have questions about the details in the document, please reach out to the sender by emailing them directly. + +[[Conditional:ReportAbuseUrl]]Stop receiving this email +[[Conditional:ReportAbuseUrl]]Report this email [[Data:ReportAbuseUrl]] +[[Conditional:ReportAbuseUrl]]Declining to sign [[Support.DecliningToSignUrl]] +[[Conditional:ReportAbuseUrl]]Managing notifications [[Support.ManagingNotificationsUrl]] + +If you are having trouble signing the document, please visit the Help with Signing page on our Support Center. +https://support.docusign.com/articles/How-do-I-sign-a-DocuSign-document-Basic-Signing + + +Corrected: [[Data:SubjectInput]] + + +Hello [[Data:RecipientName]], + +[[Data:DeclinerName]] declined [[Data:DocumentNames]]. As a result, the documents cannot be completed. + +No Content + +No Content + +[[Data:QuickURL]] + +If clicking the link does not work, you can highlight and copy the entire line above and paste it into your browser to get started. + +This message was sent to you by [[Data:SenderName]] who is using the DocuSign Electronic Signature Service. If you would rather not receive email from this sender you may contact the sender with your request. + +Do Not Share This Email +This email contains a secure link to DocuSign. Please do not share this email, link, or access code with others. +[[Conditional:ExpirationUrl]]Click here to expire the above link to the document + +Questions about the Document? +If you need to modify the document or have questions about the details in the document, please reach out to the sender by emailing them directly. + +[[Conditional:ReportAbuseUrl]]Stop receiving this email +[[Conditional:ReportAbuseUrl]]Report this email [[Data:ReportAbuseUrl]] +[[Conditional:ReportAbuseUrl]]Declining to sign [[Support.DecliningToSignUrl]] +[[Conditional:ReportAbuseUrl]]Managing notifications [[Support.ManagingNotificationsUrl]] + +If you are having trouble signing the document, please visit the Help with Signing page on our Support Center. +https://support.docusign.com/articles/How-do-I-sign-a-DocuSign-document-Basic-Signing + + +Declined: [[Data:SubjectInput]] + + +Hello [[Data:RecipientName]], + +[[Data:Information]] has failed for [[Data:RecipientName]] because: [[Data:Error]] + +Please check your account and resolve this problem directly with [[Data:RecipientName]]. + +This message was sent to you by [[Data:SenderName]] who is using the DocuSign Electronic Signature Service. If you would rather not receive email from this sender you may contact the sender with your request. + +Do Not Share This Email +This email contains a secure link to DocuSign. Please do not share this email, link, or access code with others. +[[Conditional:ExpirationUrl]]Click here to expire the above link to the document + +Questions about the Document? +If you need to modify the document or have questions about the details in the document, please reach out to the sender by emailing them directly. + +[[Conditional:ReportAbuseUrl]]Stop receiving this email +[[Conditional:ReportAbuseUrl]]Report this email [[Data:ReportAbuseUrl]] +[[Conditional:ReportAbuseUrl]]Declining to sign [[Support.DecliningToSignUrl]] +[[Conditional:ReportAbuseUrl]]Managing notifications [[Support.ManagingNotificationsUrl]] + +If you are having trouble signing the document, please visit the Help with Signing page on our Support Center. +https://support.docusign.com/articles/How-do-I-sign-a-DocuSign-document-Basic-Signing + + +Payment Resolution Issue: [[Data:Subject]] + + +Hello [[Data:RecipientName]], + +[[Data:Information]] has failed for [[Data:RecipientName]] because: [[Data:Error]] + +Please check your account and resolve this problem directly with [[Data:RecipientName]]. + +This message was sent to you by [[Data:SenderName]] who is using the DocuSign Electronic Signature Service. If you would rather not receive email from this sender you may contact the sender with your request. + +Do Not Share This Email +This email contains a secure link to DocuSign. Please do not share this email, link, or access code with others. +[[Conditional:ExpirationUrl]]Click here to expire the above link to the document + +Questions about the Document? +If you need to modify the document or have questions about the details in the document, please reach out to the sender by emailing them directly. + +[[Conditional:ReportAbuseUrl]]Stop receiving this email +[[Conditional:ReportAbuseUrl]]Report this email [[Data:ReportAbuseUrl]] +[[Conditional:ReportAbuseUrl]]Declining to sign [[Support.DecliningToSignUrl]] +[[Conditional:ReportAbuseUrl]]Managing notifications [[Support.ManagingNotificationsUrl]] + +If you are having trouble signing the document, please visit the Help with Signing page on our Support Center. +https://support.docusign.com/articles/How-do-I-sign-a-DocuSign-document-Basic-Signing + + +Payment Resolution Issue: [[Data:Subject]] + + +Hello [[Data:RecipientName]], + +[[Data:Subject]] has been voided for the following reason: +[[Data:VoidReason]] +[[Conditional:UseVoidReasonExpiredMessage]]Envelope has expired. + +Envelope ID +[[Data:EnvelopeID]] + +This message was sent to you by [[Data:SenderName]] who is using the DocuSign Electronic Signature Service. If you would rather not receive email from this sender you may contact the sender with your request. + +Do Not Share This Email +This email contains a secure link to DocuSign. Please do not share this email, link, or access code with others. +[[Conditional:ExpirationUrl]]Click here to expire the above link to the document + +Questions about the Document? +If you need to modify the document or have questions about the details in the document, please reach out to the sender by emailing them directly. + +[[Conditional:ReportAbuseUrl]]Stop receiving this email +[[Conditional:ReportAbuseUrl]]Report this email [[Data:ReportAbuseUrl]] +[[Conditional:ReportAbuseUrl]]Declining to sign [[Support.DecliningToSignUrl]] +[[Conditional:ReportAbuseUrl]]Managing notifications [[Support.ManagingNotificationsUrl]] + +If you are having trouble signing the document, please visit the Help with Signing page on our Support Center. +https://support.docusign.com/articles/How-do-I-sign-a-DocuSign-document-Basic-Signing + + +Voided: [[Data:SubjectInput]] + + +Hello [[Data:RecipientName]], + +The attempt to vault the [[Data:Subject]], to eOriginal On Demand, failed due to the following error: + +[[Data:Error]] + +As a result, you cannot access the envelope, [[Data:EnvelopeID]] in eOriginal On Demand. + +This message was sent to you by [[Data:SenderName]] who is using the DocuSign Electronic Signature Service. If you would rather not receive email from this sender you may contact the sender with your request. + +Do Not Share This Email +This email contains a secure link to DocuSign. Please do not share this email, link, or access code with others. +[[Conditional:ExpirationUrl]]Click here to expire the above link to the document + +Questions about the Document? +If you need to modify the document or have questions about the details in the document, please reach out to the sender by emailing them directly. + +[[Conditional:ReportAbuseUrl]]Stop receiving this email +[[Conditional:ReportAbuseUrl]]Report this email [[Data:ReportAbuseUrl]] +[[Conditional:ReportAbuseUrl]]Declining to sign [[Support.DecliningToSignUrl]] +[[Conditional:ReportAbuseUrl]]Managing notifications [[Support.ManagingNotificationsUrl]] + +If you are having trouble signing the document, please visit the Help with Signing page on our Support Center. +https://support.docusign.com/articles/How-do-I-sign-a-DocuSign-document-Basic-Signing + + +Failed Envelope Vaulting: [[Data:SubjectInput]] + + +Hello [[Data:RecipientName]], + +Fax has been received and added to [[Data:DocumentNames]]. + +No Content + +This message was sent to you by [[Data:SenderName]] who is using the DocuSign Electronic Signature Service. If you would rather not receive email from this sender you may contact the sender with your request. + +Do Not Share This Email +This email contains a secure link to DocuSign. Please do not share this email, link, or access code with others. +[[Conditional:ExpirationUrl]]Click here to expire the above link to the document + +Questions about the Document? +If you need to modify the document or have questions about the details in the document, please reach out to the sender by emailing them directly. + +[[Conditional:ReportAbuseUrl]]Stop receiving this email +[[Conditional:ReportAbuseUrl]]Report this email [[Data:ReportAbuseUrl]] +[[Conditional:ReportAbuseUrl]]Declining to sign [[Support.DecliningToSignUrl]] +[[Conditional:ReportAbuseUrl]]Managing notifications [[Support.ManagingNotificationsUrl]] + +If you are having trouble signing the document, please visit the Help with Signing page on our Support Center. +https://support.docusign.com/articles/How-do-I-sign-a-DocuSign-document-Basic-Signing + + +[[Data:SubjectInput]] + + +Hello [[Data:RecipientName]], + +Fax has been received and added to [[Data:DocumentNames]]. + +No Content + +[[Data:QuickURL]] + +If clicking the link does not work, you can highlight and copy the entire line above and paste it into your browser to get started. + +This message was sent to you by [[Data:SenderName]] who is using the DocuSign Electronic Signature Service. If you would rather not receive email from this sender you may contact the sender with your request. + +Do Not Share This Email +This email contains a secure link to DocuSign. Please do not share this email, link, or access code with others. +[[Conditional:ExpirationUrl]]Click here to expire the above link to the document + +Questions about the Document? +If you need to modify the document or have questions about the details in the document, please reach out to the sender by emailing them directly. + +[[Conditional:ReportAbuseUrl]]Stop receiving this email +[[Conditional:ReportAbuseUrl]]Report this email [[Data:ReportAbuseUrl]] +[[Conditional:ReportAbuseUrl]]Declining to sign [[Support.DecliningToSignUrl]] +[[Conditional:ReportAbuseUrl]]Managing notifications [[Support.ManagingNotificationsUrl]] + +If you are having trouble signing the document, please visit the Help with Signing page on our Support Center. +https://support.docusign.com/articles/How-do-I-sign-a-DocuSign-document-Basic-Signing + + +[[Data:SubjectInput]] + + +Hello [[Data:RecipientName]], + +DocuSign Support received your request to change your password. [[Conditional:ForgotPasswordQuestion1]]When you originally created your password, you entered the following forgot password questions: + +[[Conditional:ForgotPasswordQuestion1]][[Data:ForgotPasswordQuestion1]] + +[[Conditional:ForgotPasswordQuestion2]][[Data:ForgotPasswordQuestion2]] + +[[Conditional:ForgotPasswordQuestion3]][[Data:ForgotPasswordQuestion3]] + +[[Conditional:ForgotPasswordQuestion4]][[Data:ForgotPasswordQuestion4]] + +Please contact DocuSign Support if you did not initiate this request. + +[[Data:QuickURL]] + +If clicking the link does not work, you can highlight and copy the entire line above and paste it into your browser to get started. + +This message was sent to you by [[Data:SenderName]] who is using the DocuSign Electronic Signature Service. If you would rather not receive email from this sender you may contact the sender with your request. + +Do Not Share This Email +This email contains a secure link to DocuSign. Please do not share this email, link, or access code with others. +[[Conditional:ExpirationUrl]]Click here to expire the above link to the document + +Questions about the Document? +If you need to modify the document or have questions about the details in the document, please reach out to the sender by emailing them directly. + +[[Conditional:ReportAbuseUrl]]Stop receiving this email +[[Conditional:ReportAbuseUrl]]Report this email [[Data:ReportAbuseUrl]] +[[Conditional:ReportAbuseUrl]]Declining to sign [[Support.DecliningToSignUrl]] +[[Conditional:ReportAbuseUrl]]Managing notifications [[Support.ManagingNotificationsUrl]] + +If you are having trouble signing the document, please visit the Help with Signing page on our Support Center. +https://support.docusign.com/articles/How-do-I-sign-a-DocuSign-document-Basic-Signing + + +Create a New Password + + +Hello [[Data:RecipientName]], + +Please review and sign [[Data:DocumentNames]] + +Thanks. + +[[Data:EmailBlurb]] + +[[Data:QuickURL]] + +This message was sent to you by [[Data:SenderName]] who is using the DocuSign Electronic Signature Service. If you would rather not receive email from this sender you may contact the sender with your request. + +Do Not Share This Email +This email contains a secure link to DocuSign. Please do not share this email, link, or access code with others. +[[Conditional:ExpirationUrl]]Click here to expire the above link to the document + +Questions about the Document? +If you need to modify the document or have questions about the details in the document, please reach out to the sender by emailing them directly. + +[[Conditional:ReportAbuseUrl]]Stop receiving this email +[[Conditional:ReportAbuseUrl]]Report this email [[Data:ReportAbuseUrl]] +[[Conditional:ReportAbuseUrl]]Declining to sign [[Support.DecliningToSignUrl]] +[[Conditional:ReportAbuseUrl]]Managing notifications [[Support.ManagingNotificationsUrl]] + +If you are having trouble signing the document, please visit the Help with Signing page on our Support Center. +https://support.docusign.com/articles/How-do-I-sign-a-DocuSign-document-Basic-Signing + + +[[Data:SubjectInput]] + + +Hello [[Data:SenderName]], + +Recipient's ID couldn't be automatically verified for [[Data:DocumentNames]] + +[[Data:QuickURL]] + +If clicking the link does not work, you can highlight and copy the entire line above and paste it into your browser to get started. + +This message was sent to you by [[Data:SenderName]] who is using the DocuSign Electronic Signature Service. If you would rather not receive email from this sender you may contact the sender with your request. + +Do Not Share This Email +This email contains a secure link to DocuSign. Please do not share this email, link, or access code with others. +[[Conditional:ExpirationUrl]]Click here to expire the above link to the document + +Questions about the Document? +If you need to modify the document or have questions about the details in the document, please reach out to the sender by emailing them directly. + +[[Conditional:ReportAbuseUrl]]Stop receiving this email +[[Conditional:ReportAbuseUrl]]Report this email [[Data:ReportAbuseUrl]] +[[Conditional:ReportAbuseUrl]]Declining to sign [[Support.DecliningToSignUrl]] +[[Conditional:ReportAbuseUrl]]Managing notifications [[Support.ManagingNotificationsUrl]] + +If you are having trouble signing the document, please visit the Help with Signing page on our Support Center. +https://support.docusign.com/articles/How-do-I-sign-a-DocuSign-document-Basic-Signing + + +ID Review Required: [[Data:SubjectInput]] + + +Hello [[Data:RecipientName]], + + Due to a payment gateway configuration issue, payments for the following envelope may not be completed: [[Data:EnvelopeID]]. + + Payment Gateway: [[Data:PaymentGatewayAccountDisplayName]] + + Gateway Error: [[Data:Error]] + + You may need to change a setting with the payment gateway, check the status of the envelope, or help recipients with their payment. + + For more information about payment gateway configuration errors, see "Why am I getting an error for a payment gateway configuration issue?". + +This message was sent to you by [[Data:SenderName]] who is using the DocuSign Electronic Signature Service. If you would rather not receive email from this sender you may contact the sender with your request. + +Do Not Share This Email +This email contains a secure link to DocuSign. Please do not share this email, link, or access code with others. +[[Conditional:ExpirationUrl]]Click here to expire the above link to the document + +Questions about the Document? +If you need to modify the document or have questions about the details in the document, please reach out to the sender by emailing them directly. + +[[Conditional:ReportAbuseUrl]]Stop receiving this email +[[Conditional:ReportAbuseUrl]]Report this email [[Data:ReportAbuseUrl]] +[[Conditional:ReportAbuseUrl]]Declining to sign [[Support.DecliningToSignUrl]] +[[Conditional:ReportAbuseUrl]]Managing notifications [[Support.ManagingNotificationsUrl]] + +If you are having trouble signing the document, please visit the Help with Signing page on our Support Center. +https://support.docusign.com/articles/How-do-I-sign-a-DocuSign-document-Basic-Signing + + +Error with payment configuration + + +Hello [[Data:RecipientName]], + +Thank you for signing your documents. + +If you did not DocuSign with [[Data:SenderName]], please contact support. + +This message was sent to you by [[Data:SenderName]] who is using the DocuSign Electronic Signature Service. If you would rather not receive email from this sender you may contact the sender with your request. + +Do Not Share This Email +This email contains a secure link to DocuSign. Please do not share this email, link, or access code with others. +[[Conditional:ExpirationUrl]]Click here to expire the above link to the document + +Questions about the Document? +If you need to modify the document or have questions about the details in the document, please reach out to the sender by emailing them directly. + +[[Conditional:ReportAbuseUrl]]Stop receiving this email +[[Conditional:ReportAbuseUrl]]Report this email [[Data:ReportAbuseUrl]] +[[Conditional:ReportAbuseUrl]]Declining to sign [[Support.DecliningToSignUrl]] +[[Conditional:ReportAbuseUrl]]Managing notifications [[Support.ManagingNotificationsUrl]] + +If you are having trouble signing the document, please visit the Help with Signing page on our Support Center. +https://support.docusign.com/articles/How-do-I-sign-a-DocuSign-document-Basic-Signing + + +Signed: [[Data:SubjectInput]] + + +Hello [[Data:RecipientName]], + +Thank you for viewing your documents. + +If you did not view documents from [[Data:SenderName]], please contact support. + + +This message was sent to you by [[Data:SenderName]] who is using the DocuSign Electronic Signature Service. If you would rather not receive email from this sender you may contact the sender with your request. + +Do Not Share This Email +This email contains a secure link to DocuSign. Please do not share this email, link, or access code with others. +[[Conditional:ExpirationUrl]]Click here to expire the above link to the document + +Questions about the Document? +If you need to modify the document or have questions about the details in the document, please reach out to the sender by emailing them directly. + +[[Conditional:ReportAbuseUrl]]Stop receiving this email +[[Conditional:ReportAbuseUrl]]Report this email [[Data:ReportAbuseUrl]] +[[Conditional:ReportAbuseUrl]]Declining to sign [[Support.DecliningToSignUrl]] +[[Conditional:ReportAbuseUrl]]Managing notifications [[Support.ManagingNotificationsUrl]] + +If you are having trouble signing the document, please visit the Help with Signing page on our Support Center. +https://support.docusign.com/articles/How-do-I-sign-a-DocuSign-document-Basic-Signing + + +Viewed: [[Data:SubjectInput]] + + +Hello [[Data:RecipientName]], + +Thank you for choosing DocuSign. + +You're just one step away from experiencing the benefits of DocuSign's electronic signature solution. + +Please click the 'Activate' button above to verify your email address and complete your account registration process. + +[[Data:QuickURL]] + +If clicking the link does not work, you can highlight and copy the entire line above and paste it into your browser to get started. + +This message was sent to you by [[Data:SenderName]] who is using the DocuSign Electronic Signature Service. If you would rather not receive email from this sender you may contact the sender with your request. + +Do Not Share This Email +This email contains a secure link to DocuSign. Please do not share this email, link, or access code with others. +[[Conditional:ExpirationUrl]]Click here to expire the above link to the document + +Questions about the Document? +If you need to modify the document or have questions about the details in the document, please reach out to the sender by emailing them directly. + +[[Conditional:ReportAbuseUrl]]Stop receiving this email +[[Conditional:ReportAbuseUrl]]Report this email [[Data:ReportAbuseUrl]] +[[Conditional:ReportAbuseUrl]]Declining to sign [[Support.DecliningToSignUrl]] +[[Conditional:ReportAbuseUrl]]Managing notifications [[Support.ManagingNotificationsUrl]] + +If you are having trouble signing the document, please visit the Help with Signing page on our Support Center. +https://support.docusign.com/articles/How-do-I-sign-a-DocuSign-document-Basic-Signing + + +Action Required - Activate Your DocuSign Account + + +Hello [[Data:RecipientName]], + +Please click the 'Activate' button to finish your account activation. + +Thank you for choosing DocuSign. + +[[Data:QuickURL]] + +If clicking the link does not work, you can highlight and copy the entire line above and paste it into your browser to get started. + +This message was sent to you by [[Data:SenderName]] who is using the DocuSign Electronic Signature Service. If you would rather not receive email from this sender you may contact the sender with your request. + +Do Not Share This Email +This email contains a secure link to DocuSign. Please do not share this email, link, or access code with others. +[[Conditional:ExpirationUrl]]Click here to expire the above link to the document + +Questions about the Document? +If you need to modify the document or have questions about the details in the document, please reach out to the sender by emailing them directly. + +[[Conditional:ReportAbuseUrl]]Stop receiving this email +[[Conditional:ReportAbuseUrl]]Report this email [[Data:ReportAbuseUrl]] +[[Conditional:ReportAbuseUrl]]Declining to sign [[Support.DecliningToSignUrl]] +[[Conditional:ReportAbuseUrl]]Managing notifications [[Support.ManagingNotificationsUrl]] + +If you are having trouble signing the document, please visit the Help with Signing page on our Support Center. +https://support.docusign.com/articles/How-do-I-sign-a-DocuSign-document-Basic-Signing + + +Account Activation + + +Hello [[Data:RecipientName]], + + Your DocuSign verification code is: + [[Data:LoginSecurityCode]] + +[[Conditional:LoginSecurityCodeIsForLogin]]Please enter this code to access your DocuSign account. For security reasons, do not use this code outside of DocuSign. Never share this code. + [[Conditional:LoginSecurityCodeIsForNewEmail]]Enter this code to confirm your email address. For security reasons, do not use this code outside of DocuSign. Never share this code. + + Didn’t request this code? Log into your DocuSign profile and update your password. For an extra layer of security, you can enable two-step verification. + +This message was sent to you by [[Data:SenderName]] who is using the DocuSign Electronic Signature Service. If you would rather not receive email from this sender you may contact the sender with your request. + +Do Not Share This Email +This email contains a secure link to DocuSign. Please do not share this email, link, or access code with others. +[[Conditional:ExpirationUrl]]Click here to expire the above link to the document + + +Verify your identity to log in to DocuSign + + +Hello [[Data:RecipientName]], + +We were unable to process your request for a free trial at this time, as our records indicate you already have a DocuSign account associated with this email address [[Data:ToEmail]]. + +To access your account, simply click the LOG IN button above. If you have forgotten your password, you can reset it during log in. + +[[Data:QuickURL]] + +If clicking the link does not work, you can highlight and copy the entire line above and paste it into your browser to get started. + +This message was sent to you by [[Data:SenderName]] who is using the DocuSign Electronic Signature Service. If you would rather not receive email from this sender you may contact the sender with your request. + +Do Not Share This Email +This email contains a secure link to DocuSign. Please do not share this email, link, or access code with others. +[[Conditional:ExpirationUrl]]Click here to expire the above link to the document + +Questions about the Document? +If you need to modify the document or have questions about the details in the document, please reach out to the sender by emailing them directly. + +[[Conditional:ReportAbuseUrl]]Stop receiving this email +[[Conditional:ReportAbuseUrl]]Report this email [[Data:ReportAbuseUrl]] +[[Conditional:ReportAbuseUrl]]Declining to sign [[Support.DecliningToSignUrl]] +[[Conditional:ReportAbuseUrl]]Managing notifications [[Support.ManagingNotificationsUrl]] + +If you are having trouble signing the document, please visit the Help with Signing page on our Support Center. +https://support.docusign.com/articles/How-do-I-sign-a-DocuSign-document-Basic-Signing + + +Your DocuSign Account + + +New Device Login +We noticed a login from a new device or browser. +If this was you, you can safely disregard this email. +If this wasn't you, please change your password imediately to secure your account. For added security, we recommend enabling Two-Step Verification. +Why did we send this? +We didn't recognize this device or browser. You might receive this email again if you sign in from a new device or browser, you clear your cookies, or you use your browser's private mode. + + +New Device Login + + +Notary Service Requested +From: [[Data:SenderName]] ([[Data:SenderEmail]])[[Data:SenderCompany]] + +Hello [[Data:RecipientName]], + +[[Data:SenderName]] has requested you act as notary public for an electronic signature ceremony. + +[[Data:EmailBlurb]] + +[[Data:RecipientNote]] + +Step 1: Sign into your DocuSign account and verify that your commission information is current. + +Sign In + [[Data:NotaryLoginURL]] + + Step 2: Contact the signer to set up a time and location to sign. + +[[Data:SignerName]] +[[Data:SignerEmail]] + +Step 3: Conduct the electronic signing ceremony with the signer. + + When you are in the presence of the signer, begin the electronic signing ceremony: + +[[Conditional:IsExpirationMail]]Expiration Pending: This document will expire on [[Data:EnvelopeExpirationDate]]. + +BEGIN SIGNING + [[Data:QuickURL]] + +Visit DocuSign.com, click 'Access Documents', and enter the security code: + +This message was sent to you by [[Data:SenderName]] who is using the DocuSign Electronic Signature Service. If you would rather not receive email from this sender you may contact the sender with your request. + +Do Not Share This Email +This email contains a secure link to DocuSign. Please do not share this email, link, or access code with others. +[[Conditional:ExpirationUrl]]Click here to expire the above link to the document + +Questions about the Document? +If you need to modify the document or have questions about the details in the document, please reach out to the sender by emailing them directly. + +[[Conditional:ReportAbuseUrl]]Stop receiving this email +[[Conditional:ReportAbuseUrl]]Report this email [[Data:ReportAbuseUrl]] +[[Conditional:ReportAbuseUrl]]Declining to sign [[Support.DecliningToSignUrl]] +[[Conditional:ReportAbuseUrl]]Managing notifications [[Support.ManagingNotificationsUrl]] + +If you are having trouble signing the document, please visit the Help with Signing page on our Support Center. +https://support.docusign.com/articles/How-do-I-sign-a-DocuSign-document-Basic-Signing + + +[[Conditional:IsExpirationMail]]Expiration Pending: +[[Conditional:IsExpirationMail]]Reminder: +Notary Service Requested + + +Notary Service Requested +From: [[Data:SenderName]] ([[Data:SenderEmail]])[[Data:SenderCompany]] + +Hello [[Data:RecipientName]], + +[[Data:SenderName]] has requested you act as notary public for an electronic signature ceremony. + +[[Conditional:EmailBlurb]][[Data:EmailBlurb]] + + [[Conditional:EmailBlurbUseDefault]][[Conditional:NotInPersonSigningSession]][[Data:RecipientName]], +[[Conditional:NotInPersonSigningSession]][[Conditional:EmailBlurbUseDefault]] [[Conditional:DocumentNames]]Please DocuSign [[Data:DocumentNames]] +[[Conditional:InPersonSignerName]]You are the host for an in-person signing session: Signer: [[Data:InPersonSignerName]]Document: [[Data:Subject]] +[[Conditional:EmailBlurbUseDefault]] Thank You, [[Data:SenderName]] + +[[Data:RecipientNote]] + + To complete this process, please follow these steps: + +Step 1: Register with DocuSign as an electronic notary public. + +To notarize documents and conduct an electronic signature ceremony with a client, register with DocuSign as an electronic notary public. Please check for an activation email to activate your DocuSign account. For more information, see https://support.docusign.com[[Data:NotaryDocumentationUri]] + +Step 2: Contact the signer to set up a time and location to sign. + +[[Data:SignerName]] +[[Data:SignerEmail]] + +Step 3: Conduct the electronic signing ceremony with the signer. + +[[Conditional:IsExpirationMail]]Expiration Pending: This document will expire on [[Data:EnvelopeExpirationDate]]. + + When you are in the presence of the signer, begin the electronic signing ceremony: + + [[Data:QuickURL]] + +Visit DocuSign.com, click 'Access Documents', and enter the security code: + +This message was sent to you by [[Data:SenderName]] who is using the DocuSign Electronic Signature Service. If you would rather not receive email from this sender you may contact the sender with your request. + +Do Not Share This Email +This email contains a secure link to DocuSign. Please do not share this email, link, or access code with others. +[[Conditional:ExpirationUrl]]Click here to expire the above link to the document + +Questions about the Document? +If you need to modify the document or have questions about the details in the document, please reach out to the sender by emailing them directly. + +[[Conditional:ReportAbuseUrl]]Stop receiving this email +[[Conditional:ReportAbuseUrl]]Report this email [[Data:ReportAbuseUrl]] +[[Conditional:ReportAbuseUrl]]Declining to sign [[Support.DecliningToSignUrl]] +[[Conditional:ReportAbuseUrl]]Managing notifications [[Support.ManagingNotificationsUrl]] + +If you are having trouble signing the document, please visit the Help with Signing page on our Support Center. +https://support.docusign.com/articles/How-do-I-sign-a-DocuSign-document-Basic-Signing + + +[[Conditional:IsExpirationMail]]Expiration Pending: +[[Conditional:IsExpirationMail]]Reminder: +Notary Service Requested + + +Hello [[Data:RecipientName]], + +[[Data:RecipientName]] was unable to pass authentication for [[Data:Subject]]. + +This message was sent to you by [[Data:SenderName]] who is using the DocuSign Electronic Signature Service. If you would rather not receive email from this sender you may contact the sender with your request. + +Do Not Share This Email +This email contains a secure link to DocuSign. Please do not share this email, link, or access code with others. +[[Conditional:ExpirationUrl]]Click here to expire the above link to the document + +Questions about the Document? +If you need to modify the document or have questions about the details in the document, please reach out to the sender by emailing them directly. + +[[Conditional:ReportAbuseUrl]]Stop receiving this email +[[Conditional:ReportAbuseUrl]]Report this email [[Data:ReportAbuseUrl]] +[[Conditional:ReportAbuseUrl]]Declining to sign [[Support.DecliningToSignUrl]] +[[Conditional:ReportAbuseUrl]]Managing notifications [[Support.ManagingNotificationsUrl]] + +If you are having trouble signing the document, please visit the Help with Signing page on our Support Center. +https://support.docusign.com/articles/How-do-I-sign-a-DocuSign-document-Basic-Signing + + +OFAC Match: [[Data:SubjectInput]] + + +[[Data:OriginalRecipientName]] is requesting that this account ([[Data:AccountName]]) be linked to the [[Data:OrganizationName]] organization. + +Linking this account will allow you to use Single Sign-On (SSO) authentication through the organization. This will not grant the organization administrative access to your account and will not impact business operations. + +Click the link below to review and accept or decline this request. + +[[Data:QuickURL]] + +If clicking the link does not work, you can highlight and copy the entire line above and paste it into your browser to get started. + +This invitation to link comes from [[Data:SenderName]]. If you have any questions, please contact [[Data:SenderEmail]]. + +Thank you for choosing DocuSign. + +This message was sent to you by [[Data:SenderName]] who is using the DocuSign Electronic Signature Service. If you would rather not receive email from this sender you may contact the sender with your request. + +Do Not Share This Email +This email contains a secure link to DocuSign. Please do not share this email, link, or access code with others. +[[Conditional:ExpirationUrl]]Click here to expire the above link to the document + +Questions about the Document? +If you need to modify the document or have questions about the details in the document, please reach out to the sender by emailing them directly. + +[[Conditional:ReportAbuseUrl]]Stop receiving this email +[[Conditional:ReportAbuseUrl]]Report this email [[Data:ReportAbuseUrl]] +[[Conditional:ReportAbuseUrl]]Declining to sign [[Support.DecliningToSignUrl]] +[[Conditional:ReportAbuseUrl]]Managing notifications [[Support.ManagingNotificationsUrl]] + +If you are having trouble signing the document, please visit the Help with Signing page on our Support Center. +https://support.docusign.com/articles/How-do-I-sign-a-DocuSign-document-Basic-Signing + + +Request to link to [[Data:OrganizationName]] + + +Hello [[Data:RecipientName]], + +From: [[Data:SenderName]] via DocuSign. + +To activate your [[Data:OrganizationName]] administrator membership, click the link below. + +Once activated, your membership grants administration access to the [[Data:OrganizationName]] organization, providing centralized management of all linked accounts and users. + +This membership invitation comes from [[Data:SenderName]]. If you have any questions, please contact [[Data:SenderName]]. + +Thank you for choosing DocuSign. + +[[Data:QuickURL]] + +If clicking the link does not work, you can highlight and copy the entire line above and paste it into your browser to get started. + +This message was sent to you by [[Data:SenderName]] who is using the DocuSign Electronic Signature Service. If you would rather not receive email from this sender you may contact the sender with your request. + +Do Not Share This Email +This email contains a secure link to DocuSign. Please do not share this email, link, or access code with others. +[[Conditional:ExpirationUrl]]Click here to expire the above link to the document + +Questions about the Document? +If you need to modify the document or have questions about the details in the document, please reach out to the sender by emailing them directly. + +[[Conditional:ReportAbuseUrl]]Stop receiving this email +[[Conditional:ReportAbuseUrl]]Report this email [[Data:ReportAbuseUrl]] +[[Conditional:ReportAbuseUrl]]Declining to sign [[Support.DecliningToSignUrl]] +[[Conditional:ReportAbuseUrl]]Managing notifications [[Support.ManagingNotificationsUrl]] + +If you are having trouble signing the document, please visit the Help with Signing page on our Support Center. +https://support.docusign.com/articles/How-do-I-sign-a-DocuSign-document-Basic-Signing + + +[[Data:OrganizationName]] Organization Admin membership activation + + +Hello [[Data:RecipientName]], + + Password changed + +Your DocuSign password has recently changed. + +If you did not intend to do this, please visit DocuSign and click on Forgot Password to reset your password. + +This message was sent to you by [[Data:SenderName]] who is using the DocuSign Electronic Signature Service. If you would rather not receive email from this sender you may contact the sender with your request. + +Do Not Share This Email +This email contains a secure link to DocuSign. Please do not share this email, link, or access code with others. +[[Conditional:ExpirationUrl]]Click here to expire the above link to the document + + +Your DocuSign password has been changed + + +You do not have a DocuSign account +We received a request to reset the DocuSign password for this email, but no account exists. +If you are trying to access a document, please use the link you received in email. +If you would like to sign up, for a free trial account, click link below. +If you did not initiate this request, you may disregard this email. Any documents you may have previously signed are secure. +[[Data:QuickURL]] + + +DocuSign password reset attempt + + +Hello [[Data:RecipientName]], + +Please click on the link below to finish signing. + +[[Data:EmailBlurb]] + +[[Conditional:RecipientNote]]Notes + +[[Conditional:RecipientNote]][[Data:RecipientNote]] + +[[Conditional:ShowDigitalCertSafe]]Step 1: Confirm you have a valid digital certificate with [[Data:DigitalCertificateIssuer]] and log in to your account. If you don't have one, please sign up for one now using this link: [[Data:DigitalCertificateIssuerLink]] +[[Conditional:ShowDigitalCertSafe]]Step 2: Review and sign your documents. You will be asked to log in to your digital certificate account during the signing process. +[[Conditional:ShowDigitalCertExpress]]The Sender has requested that this document be digitally signed via the application of a DocuSign Express Digital Certificate. This digital certificate will be automatically issued and applied for you during the signing process. +[[Conditional:ShowDigitalCertOpenTrust]]The Sender has required this document to be digitally signed via the application of an OpenTrust Protect & Sign digital signature. A digital certificate will be automatically issued and applied for the Signer during the signing process. +[[Conditional:ShowDigitalCertICPBrazil]]The Sender has required this document to be digitally signed via a ICP-Brazil Digital Signature. The Signer will be asked to select their digital certificate during the signing process. +[[Conditional:ShowDigitalCertNovartis]]The Sender has required this document to be digitally signed via a Novartis Digital Signature. The Signer will be asked to select their digital certificate during the signing process. + +[[Conditional:IsExpirationMail]]Expiration Pending: This document will expire on [[Data:EnvelopeExpirationDate]]. + + [[Conditional:IsCFRPart11Compliant]]Part 11 Module Enabled + +[[Conditional:IsEnvelopeContainingMultipleDocuments]]REVIEW DOCUMENTS +[[Conditional:IsEnvelopeContainingSingleDocument]]REVIEW DOCUMENT + +[[Data:QuickURL]] + +If clicking the link does not work, you can highlight and copy the entire line above and paste it into your browser to get started. + +This message was sent to you by [[Data:SenderName]] who is using the DocuSign Electronic Signature Service. If you would rather not receive email from this sender you may contact the sender with your request. + +Do Not Share This Email +This email contains a secure link to DocuSign. Please do not share this email, link, or access code with others. +[[Conditional:ExpirationUrl]]Click here to expire the above link to the document + +Questions about the Document? +If you need to modify the document or have questions about the details in the document, please reach out to the sender by emailing them directly. + +[[Conditional:ReportAbuseUrl]]Stop receiving this email +[[Conditional:ReportAbuseUrl]]Report this email [[Data:ReportAbuseUrl]] +[[Conditional:ReportAbuseUrl]]Declining to sign [[Support.DecliningToSignUrl]] +[[Conditional:ReportAbuseUrl]]Managing notifications [[Support.ManagingNotificationsUrl]] + +If you are having trouble signing the document, please visit the Help with Signing page on our Support Center. +https://support.docusign.com/articles/How-do-I-sign-a-DocuSign-document-Basic-Signing + + +[[Data:SubjectInput]] + + +Hello [[Data:RecipientName]], + +[[Conditional:SeventyPercentNotification]]Once [[Data:PowerformName]] limit reaches 100 percent, no one else will be able to respond. + +You can review your response limits or update your PowerForm by logging in. + +This message was sent to you by [[Data:SenderName]] who is using the DocuSign Electronic Signature Service. If you would rather not receive email from this sender you may contact the sender with your request. + +Do Not Share This Email +This email contains a secure link to DocuSign. Please do not share this email, link, or access code with others. +[[Conditional:ExpirationUrl]]Click here to expire the above link to the document + +Questions about the Document? +If you need to modify the document or have questions about the details in the document, please reach out to the sender by emailing them directly. + +[[Conditional:ReportAbuseUrl]]Stop receiving this email +[[Conditional:ReportAbuseUrl]]Report this email [[Data:ReportAbuseUrl]] +[[Conditional:ReportAbuseUrl]]Declining to sign [[Support.DecliningToSignUrl]] +[[Conditional:ReportAbuseUrl]]Managing notifications [[Support.ManagingNotificationsUrl]] + +If you are having trouble signing the document, please visit the Help with Signing page on our Support Center. +https://support.docusign.com/articles/How-do-I-sign-a-DocuSign-document-Basic-Signing + + +You've reached the [[Data:PowerformResponsesUsagePercent]] percent limit for [[Data:PowerformName]] responses. + + +Hello [[Data:RecipientName]], + +You are receiving this notification because [[Data:SenderCompany]] has a document retention policy. Your signed documents for '[[Data:Subject]]' will be removed from DocuSign. + +To retain a copy, follow the link above or download it from your DocuSign account before [[Data:PurgeDate]] at Midnight ET. + +Reference: [[Data:EnvelopeID]] + +[[Data:QuickURL]] + +If clicking the link does not work, you can highlight and copy the entire line above and paste it into your browser to get started. + +This message was sent to you by [[Data:SenderName]] who is using the DocuSign Electronic Signature Service. If you would rather not receive email from this sender you may contact the sender with your request. + +Do Not Share This Email +This email contains a secure link to DocuSign. Please do not share this email, link, or access code with others. +[[Conditional:ExpirationUrl]]Click here to expire the above link to the document + +Questions about the Document? +If you need to modify the document or have questions about the details in the document, please reach out to the sender by emailing them directly. + +[[Conditional:ReportAbuseUrl]]Stop receiving this email +[[Conditional:ReportAbuseUrl]]Report this email [[Data:ReportAbuseUrl]] +[[Conditional:ReportAbuseUrl]]Declining to sign [[Support.DecliningToSignUrl]] +[[Conditional:ReportAbuseUrl]]Managing notifications [[Support.ManagingNotificationsUrl]] + +If you are having trouble signing the document, please visit the Help with Signing page on our Support Center. +https://support.docusign.com/articles/How-do-I-sign-a-DocuSign-document-Basic-Signing + + +Documents to be removed: [[Data:SubjectInput]] + + +No Content + +[[Data:OriginalRecipientName]] received documents to electronically sign from [[Data:SenderName]], but determined that you should sign in their place. + +[[Conditional:RecipientNote]] +[[Conditional:RecipientNote]] PRIVATE MESSAGE +[[Conditional:RecipientNote]][[Data:RecipientNote]] + +[[Data:EmailBlurb]] + +No Content + +[[Conditional:ShowDigitalCertSafe]]Step 1: Confirm you have a valid digital certificate with [[Data:DigitalCertificateIssuer]] and log in to your account. If you don't have one, please sign up for one now using this link: [[Data:DigitalCertificateIssuerLink]] +[[Conditional:ShowDigitalCertSafe]]Step 2: Review and sign your documents. You will be asked to log in to your digital certificate account during the signing process. +[[Conditional:ShowDigitalCertExpress]]The Sender has requested that this document be digitally signed via the application of a DocuSign Express Digital Certificate. This digital certificate will be automatically issued and applied for you during the signing process. +[[Conditional:ShowDigitalCertOpenTrust]]The Sender has required this document to be digitally signed via the application of an OpenTrust Protect & Sign digital signature. A digital certificate will be automatically issued and applied for the Signer during the signing process. +[[Conditional:ShowDigitalCertICPBrazil]]The Sender has required this document to be digitally signed via a ICP-Brazil Digital Signature. The Signer will be asked to select their digital certificate during the signing process. +[[Conditional:ShowDigitalCertNovartis]]The Sender has required this document to be digitally signed via a Novartis Digital Signature. The Signer will be asked to select their digital certificate during the signing process. + +[[Data:QuickURL]] + +If clicking the link does not work, you can highlight and copy the entire line above and paste it into your browser to get started. + +This message was sent to you by [[Data:SenderName]] who is using the DocuSign Electronic Signature Service. If you would rather not receive email from this sender you may contact the sender with your request. + +Do Not Share This Email +This email contains a secure link to DocuSign. Please do not share this email, link, or access code with others. +[[Conditional:ExpirationUrl]]Click here to expire the above link to the document + +Questions about the Document? +If you need to modify the document or have questions about the details in the document, please reach out to the sender by emailing them directly. + +[[Conditional:ReportAbuseUrl]]Stop receiving this email +[[Conditional:ReportAbuseUrl]]Report this email [[Data:ReportAbuseUrl]] +[[Conditional:ReportAbuseUrl]]Declining to sign [[Support.DecliningToSignUrl]] +[[Conditional:ReportAbuseUrl]]Managing notifications [[Support.ManagingNotificationsUrl]] + +If you are having trouble signing the document, please visit the Help with Signing page on our Support Center. +https://support.docusign.com/articles/How-do-I-sign-a-DocuSign-document-Basic-Signing + + +[[Data:SubjectInput]] + + +Hello [[Data:RecipientName]], + +Copy and enter the access code into the access page to continue signing. + +[[Data:RecipientAccessCode]] + +If you did not start signing [[Data:SubjectInput]], please contact support. + +This message was sent to you by [[Data:SenderName]] who is using the DocuSign Electronic Signature Service. If you would rather not receive email from this sender you may contact the sender with your request. + +Do Not Share This Email +This email contains a secure link to DocuSign. Please do not share this email, link, or access code with others. +[[Conditional:ExpirationUrl]]Click here to expire the above link to the document + +Questions about the Document? +If you need to modify the document or have questions about the details in the document, please reach out to the sender by emailing them directly. + +[[Conditional:ReportAbuseUrl]]Stop receiving this email +[[Conditional:ReportAbuseUrl]]Report this email [[Data:ReportAbuseUrl]] +[[Conditional:ReportAbuseUrl]]Declining to sign [[Support.DecliningToSignUrl]] +[[Conditional:ReportAbuseUrl]]Managing notifications [[Support.ManagingNotificationsUrl]] + +If you are having trouble signing the document, please visit the Help with Signing page on our Support Center. +https://support.docusign.com/articles/How-do-I-sign-a-DocuSign-document-Basic-Signing + + +Access code for: [[Data:SubjectInput]] + + +Hello [[Data:RecipientName]], + +Copy and enter the validation code into the access page to continue signing. + +No Content + +[[Data:RecipientAccessCode]] + +No Content + +If you did not start signing [[Data:SubjectInput]], please contact support. + +[[Data:QuickURL]] + +If clicking the link does not work, you can highlight and copy the entire line above and paste it into your browser to get started. + +This message was sent to you by [[Data:SenderName]] who is using the DocuSign Electronic Signature Service. If you would rather not receive email from this sender you may contact the sender with your request. + +Do Not Share This Email +This email contains a secure link to DocuSign. Please do not share this email, link, or access code with others. +[[Conditional:ExpirationUrl]]Click here to expire the above link to the document + +Questions about the Document? +If you need to modify the document or have questions about the details in the document, please reach out to the sender by emailing them directly. + +[[Conditional:ReportAbuseUrl]]Stop receiving this email +[[Conditional:ReportAbuseUrl]]Report this email [[Data:ReportAbuseUrl]] +[[Conditional:ReportAbuseUrl]]Declining to sign [[Support.DecliningToSignUrl]] +[[Conditional:ReportAbuseUrl]]Managing notifications [[Support.ManagingNotificationsUrl]] + +If you are having trouble signing the document, please visit the Help with Signing page on our Support Center. +https://support.docusign.com/articles/How-do-I-sign-a-DocuSign-document-Basic-Signing + + +Email Validation: [[Data:SubjectInput]] + + +Hello [[Data:RecipientName]], + +There was a problem processing your payment for [[Data:DocumentNames]]. + + Your payment was not processed. + +[[Data:PromoContent]] + +[[Data:QuickURL]] + +If clicking the link does not work, you can highlight and copy the entire line above and paste it into your browser to get started. + +This message was sent to you by [[Data:SenderName]] who is using the DocuSign Electronic Signature Service. If you would rather not receive email from this sender you may contact the sender with your request. + +Do Not Share This Email +This email contains a secure link to DocuSign. Please do not share this email, link, or access code with others. +[[Conditional:ExpirationUrl]]Click here to expire the above link to the document + +Questions about the Document? +If you need to modify the document or have questions about the details in the document, please reach out to the sender by emailing them directly. + +[[Conditional:ReportAbuseUrl]]Stop receiving this email +[[Conditional:ReportAbuseUrl]]Report this email [[Data:ReportAbuseUrl]] +[[Conditional:ReportAbuseUrl]]Declining to sign [[Support.DecliningToSignUrl]] +[[Conditional:ReportAbuseUrl]]Managing notifications [[Support.ManagingNotificationsUrl]] + +If you are having trouble signing the document, please visit the Help with Signing page on our Support Center. +https://support.docusign.com/articles/How-do-I-sign-a-DocuSign-document-Basic-Signing + + +Action required: Update your payment information. + + +Hello [[Data:RecipientName]], + +All parties have completed [[Data:Subject]]. + +[[Conditional:IncludeInPersonEmailBlurb]][[Data:EmailBlurb]] + +[[Data:Information]] + +[[Data:PromoContent]] + +No Content + +[[Data:QuickURL]] + +This message was sent to you by [[Data:SenderName]] who is using the DocuSign Electronic Signature Service. If you would rather not receive email from this sender you may contact the sender with your request. + +Do Not Share This Email +This email contains a secure link to DocuSign. Please do not share this email, link, or access code with others. +[[Conditional:ExpirationUrl]]Click here to expire the above link to the document + +Questions about the Document? +If you need to modify the document or have questions about the details in the document, please reach out to the sender by emailing them directly. + +[[Conditional:ReportAbuseUrl]]Stop receiving this email +[[Conditional:ReportAbuseUrl]]Report this email [[Data:ReportAbuseUrl]] +[[Conditional:ReportAbuseUrl]]Declining to sign [[Support.DecliningToSignUrl]] +[[Conditional:ReportAbuseUrl]]Managing notifications [[Support.ManagingNotificationsUrl]] + +If you are having trouble signing the document, please visit the Help with Signing page on our Support Center. +https://support.docusign.com/articles/How-do-I-sign-a-DocuSign-document-Basic-Signing + + +Completed: [[Data:SubjectInput]] + + +Hello [[Data:RecipientName]], + +All parties have completed [[Data:Subject]]. + + [[Data:EmailBlurb]] + +[[Data:Information]] + +[[Data:PromoContent]] + +[[Data:QuickURL]] + +If clicking the link does not work, you can highlight and copy the entire line above and paste it into your browser to get started. + +This message was sent to you by [[Data:SenderName]] who is using the DocuSign Electronic Signature Service. If you would rather not receive email from this sender you may contact the sender with your request. + +Do Not Share This Email +This email contains a secure link to DocuSign. Please do not share this email, link, or access code with others. +[[Conditional:ExpirationUrl]]Click here to expire the above link to the document + +Questions about the Document? +If you need to modify the document or have questions about the details in the document, please reach out to the sender by emailing them directly. + +[[Conditional:ReportAbuseUrl]]Stop receiving this email +[[Conditional:ReportAbuseUrl]]Report this email [[Data:ReportAbuseUrl]] +[[Conditional:ReportAbuseUrl]]Declining to sign [[Support.DecliningToSignUrl]] +[[Conditional:ReportAbuseUrl]]Managing notifications [[Support.ManagingNotificationsUrl]] + +If you are having trouble signing the document, please visit the Help with Signing page on our Support Center. +https://support.docusign.com/articles/How-do-I-sign-a-DocuSign-document-Basic-Signing + + +Completed: [[Data:SubjectInput]] + + +Hello [[Data:RecipientName]], + +You recently started signing a document that requires bank account verification for [[Data:DocumentNames]]. + +[[Data:Information]] + +No Content + +[[Data:QuickURL]] + +This message was sent to you by [[Data:SenderName]] who is using the DocuSign Electronic Signature Service. If you would rather not receive email from this sender you may contact the sender with your request. + +Do Not Share This Email +This email contains a secure link to DocuSign. Please do not share this email, link, or access code with others. +[[Conditional:ExpirationUrl]]Click here to expire the above link to the document + +Questions about the Document? +If you need to modify the document or have questions about the details in the document, please reach out to the sender by emailing them directly. + +[[Conditional:ReportAbuseUrl]]Stop receiving this email +[[Conditional:ReportAbuseUrl]]Report this email [[Data:ReportAbuseUrl]] +[[Conditional:ReportAbuseUrl]]Declining to sign [[Support.DecliningToSignUrl]] +[[Conditional:ReportAbuseUrl]]Managing notifications [[Support.ManagingNotificationsUrl]] + +If you are having trouble signing the document, please visit the Help with Signing page on our Support Center. +https://support.docusign.com/articles/How-do-I-sign-a-DocuSign-document-Basic-Signing + + +Verify your bank account information + + +Hello [[Data:SenderName]], + +Documents you sent for electronic signature could not be delivered to this email address: [[Data:RecipientEmail]] + +The destination email system provided this error message: + +[[Data:RecipientDeliveryFailedReason]] + +For more information about the failure, please see the attached email message or reference DocuSign's knowledge base to interpret this error code. + +If the email address is incorrect, follow these steps to correct it and resend the notification. + +NOTE: If you cannot correct the envelope, you can void it and create a new one. If you are not the sender of the envelope, contact the sender and ask them to correct it. + +1. Log in to your DocuSign account. +2. Locate the sent envelope. +3. Click the drop-down menu for the envelope and select Correct. +4. Correct the email address. +5. Finish correcting the envelope as usual to resend it. + +If you need further assistance, please visit Support Center. + +This message was sent to you by [[Data:SenderName]] who is using the DocuSign Electronic Signature Service. If you would rather not receive email from this sender you may contact the sender with your request. + +Do Not Share This Email +This email contains a secure link to DocuSign. Please do not share this email, link, or access code with others. +[[Conditional:ExpirationUrl]]Click here to expire the above link to the document + +Questions about the Document? +If you need to modify the document or have questions about the details in the document, please reach out to the sender by emailing them directly. + +[[Conditional:ReportAbuseUrl]]Stop receiving this email +[[Conditional:ReportAbuseUrl]]Report this email [[Data:ReportAbuseUrl]] +[[Conditional:ReportAbuseUrl]]Declining to sign [[Support.DecliningToSignUrl]] +[[Conditional:ReportAbuseUrl]]Managing notifications [[Support.ManagingNotificationsUrl]] + +If you are having trouble signing the document, please visit the Help with Signing page on our Support Center. +https://support.docusign.com/articles/How-do-I-sign-a-DocuSign-document-Basic-Signing + + +Documents sent for signature could not be delivered + + +Hello [[Data:RecipientName]], + +At [[Data:RecipientDeliveredDateTime]], [[Data:RecipientName]] opened and viewed your documents[[Conditional:DocumentNames]], [[Data:DocumentNames]]. + + +No Content + +[[Data:QuickURL]] + +If clicking the link does not work, you can highlight and copy the entire line above and paste it into your browser to get started. + +This message was sent to you by [[Data:SenderName]] who is using the DocuSign Electronic Signature Service. If you would rather not receive email from this sender you may contact the sender with your request. + +Do Not Share This Email +This email contains a secure link to DocuSign. Please do not share this email, link, or access code with others. +[[Conditional:ExpirationUrl]]Click here to expire the above link to the document + +Questions about the Document? +If you need to modify the document or have questions about the details in the document, please reach out to the sender by emailing them directly. + +[[Conditional:ReportAbuseUrl]]Stop receiving this email +[[Conditional:ReportAbuseUrl]]Report this email [[Data:ReportAbuseUrl]] +[[Conditional:ReportAbuseUrl]]Declining to sign [[Support.DecliningToSignUrl]] +[[Conditional:ReportAbuseUrl]]Managing notifications [[Support.ManagingNotificationsUrl]] + +If you are having trouble signing the document, please visit the Help with Signing page on our Support Center. +https://support.docusign.com/articles/How-do-I-sign-a-DocuSign-document-Basic-Signing + + +[[Data:RecipientName]] viewed [[Data:Subject]] + + +Hello [[Data:RecipientName]], + + Security information has changed + +[[Conditional:RecoveryInformationAdded]]A new email address, authenticator app, or phone number has been added to your account. This information will be used to provide additional security when accessing DocuSign. + [[Conditional:RecoveryInformationRemoved]]An email address, authenticator app, or phone number has been removed from your account. + +Please log in to your DocuSign account to change your settings. + +This message was sent to you by [[Data:SenderName]] who is using the DocuSign Electronic Signature Service. If you would rather not receive email from this sender you may contact the sender with your request. + +Do Not Share This Email +This email contains a secure link to DocuSign. Please do not share this email, link, or access code with others. +[[Conditional:ExpirationUrl]]Click here to expire the above link to the document + + +Your security information has been updated in DocuSign + + +Hello [[Data:RecipientName]], + +[[Data:SenderName]] ([[Data:SenderEmail]]) has sent you a copy of a report. + +[[Conditional:DownloadURL]]Download your report results. +[[Conditional:DownloadURL]][[Data:DownloadURL]] + +This message was sent to you by [[Data:SenderName]] who is using the DocuSign Electronic Signature Service. If you would rather not receive email from this sender you may contact the sender with your request. + +Do Not Share This Email +This email contains a secure link to DocuSign. Please do not share this email, link, or access code with others. +[[Conditional:ExpirationUrl]]Click here to expire the above link to the document + +Questions about the Document? +If you need to modify the document or have questions about the details in the document, please reach out to the sender by emailing them directly. + +[[Conditional:ReportAbuseUrl]]Stop receiving this email +[[Conditional:ReportAbuseUrl]]Report this email [[Data:ReportAbuseUrl]] +[[Conditional:ReportAbuseUrl]]Declining to sign [[Support.DecliningToSignUrl]] +[[Conditional:ReportAbuseUrl]]Managing notifications [[Support.ManagingNotificationsUrl]] + +If you are having trouble signing the document, please visit the Help with Signing page on our Support Center. +https://support.docusign.com/articles/How-do-I-sign-a-DocuSign-document-Basic-Signing + + +DocuSign Report: [[Data:SubjectInput]] + + +Hello [[Data:RecipientName]], + +Your scheduled report '[[SubjectInput]]' is attached. + +Alert: The schedule for this report will expire soon. + +To extend the schedule, copy the following line and paste it into a browser: + +[[Conditional:DownloadURL]]Download your report results. +[[Conditional:DownloadURL]][[Data:DownloadURL]] + +[[Data:QuickURL]] + +This message was sent to you by [[Data:SenderName]] who is using the DocuSign Electronic Signature Service. If you would rather not receive email from this sender you may contact the sender with your request. + +Do Not Share This Email +This email contains a secure link to DocuSign. Please do not share this email, link, or access code with others. +[[Conditional:ExpirationUrl]]Click here to expire the above link to the document + +Questions about the Document? +If you need to modify the document or have questions about the details in the document, please reach out to the sender by emailing them directly. + +[[Conditional:ReportAbuseUrl]]Stop receiving this email +[[Conditional:ReportAbuseUrl]]Report this email [[Data:ReportAbuseUrl]] +[[Conditional:ReportAbuseUrl]]Declining to sign [[Support.DecliningToSignUrl]] +[[Conditional:ReportAbuseUrl]]Managing notifications [[Support.ManagingNotificationsUrl]] + +If you are having trouble signing the document, please visit the Help with Signing page on our Support Center. +https://support.docusign.com/articles/How-do-I-sign-a-DocuSign-document-Basic-Signing + + +DocuSign Report: [[Data:SubjectInput]] + + +Hello [[Data:RecipientName]], + +[[Data:SenderName]] ([[Data:SenderEmail]]) has sent you a copy of a scheduled report. + +[[Data:EmailBlurb]] + +If clicking the link does not work, you can highlight and copy the entire line above and paste it into your browser to get started. + +[[Conditional:DownloadURL]]Download your report results. +[[Conditional:DownloadURL]][[Data:DownloadURL]] + +[[Data:QuickURL]] + +This message was sent to you by [[Data:SenderName]] who is using the DocuSign Electronic Signature Service. If you would rather not receive email from this sender you may contact the sender with your request. + +Do Not Share This Email +This email contains a secure link to DocuSign. Please do not share this email, link, or access code with others. +[[Conditional:ExpirationUrl]]Click here to expire the above link to the document + +Questions about the Document? +If you need to modify the document or have questions about the details in the document, please reach out to the sender by emailing them directly. + +[[Conditional:ReportAbuseUrl]]Stop receiving this email +[[Conditional:ReportAbuseUrl]]Report this email [[Data:ReportAbuseUrl]] +[[Conditional:ReportAbuseUrl]]Declining to sign [[Support.DecliningToSignUrl]] +[[Conditional:ReportAbuseUrl]]Managing notifications [[Support.ManagingNotificationsUrl]] + +If you are having trouble signing the document, please visit the Help with Signing page on our Support Center. +https://support.docusign.com/articles/How-do-I-sign-a-DocuSign-document-Basic-Signing + + +DocuSign Report: [[Data:SubjectInput]] + + +Account Creation Blocked + +A visitor to DocuSign.com attempted to create a DocuSign account using this email address: [[Data:ReservedDomainEmail]]. We did not create the account for the visitor because your DocuSign account reserves use of that email domain in the DocuSign system. + + +Account creation using reserved domain [[Data:ReservedDomain]] was blocked + + +Hello [[Data:RecipientName]], + +DocuSign has received your password reset request. + +[[Data:QuickURL]] + +If clicking the link does not work, you can highlight and copy the entire line above and paste it into your browser to get started. + +This message was sent to you by [[Data:SenderName]] who is using the DocuSign Electronic Signature Service. If you would rather not receive email from this sender you may contact the sender with your request. + +Do Not Share This Email +This email contains a secure link to DocuSign. Please do not share this email, link, or access code with others. +[[Conditional:ExpirationUrl]]Click here to expire the above link to the document + +Questions about the Document? +If you need to modify the document or have questions about the details in the document, please reach out to the sender by emailing them directly. + +[[Conditional:ReportAbuseUrl]]Stop receiving this email +[[Conditional:ReportAbuseUrl]]Report this email [[Data:ReportAbuseUrl]] +[[Conditional:ReportAbuseUrl]]Declining to sign [[Support.DecliningToSignUrl]] +[[Conditional:ReportAbuseUrl]]Managing notifications [[Support.ManagingNotificationsUrl]] + +If you are having trouble signing the document, please visit the Help with Signing page on our Support Center. +https://support.docusign.com/articles/How-do-I-sign-a-DocuSign-document-Basic-Signing + + +Reset Password Requested + + +Hello [[Data:RecipientName]], + + A payment charge failure occurred with recipient [[Data:RecipientName]] in envelope (ID:[[Data:EnvelopeID]]). + + For more information on resolving the payment failure, see Support Center. + + [[Data:PromoContent]] + +This message was sent to you by [[Data:SenderName]] who is using the DocuSign Electronic Signature Service. If you would rather not receive email from this sender you may contact the sender with your request. + +Do Not Share This Email +This email contains a secure link to DocuSign. Please do not share this email, link, or access code with others. +[[Conditional:ExpirationUrl]]Click here to expire the above link to the document + +Questions about the Document? +If you need to modify the document or have questions about the details in the document, please reach out to the sender by emailing them directly. + +[[Conditional:ReportAbuseUrl]]Stop receiving this email +[[Conditional:ReportAbuseUrl]]Report this email [[Data:ReportAbuseUrl]] +[[Conditional:ReportAbuseUrl]]Declining to sign [[Support.DecliningToSignUrl]] +[[Conditional:ReportAbuseUrl]]Managing notifications [[Support.ManagingNotificationsUrl]] + +If you are having trouble signing the document, please visit the Help with Signing page on our Support Center. +https://support.docusign.com/articles/How-do-I-sign-a-DocuSign-document-Basic-Signing + + +Error with payment capture: [[Data:Subject]] + + +Hello [[Data:RecipientName]], + +Delivery failed to [[Data:RecipientName]] at [[Data:RecipientDeliveryFailedDateTime]] for [[Data:Subject]]. + +Delivery failed to [[Data:RecipientName]] at [[Data:RecipientDeliveryFailedDateTime]] for [[Data:Subject]]. + +No Content + +[[Data:QuickURL]] + +If clicking the link does not work, you can highlight and copy the entire line above and paste it into your browser to get started. + +This message was sent to you by [[Data:SenderName]] who is using the DocuSign Electronic Signature Service. If you would rather not receive email from this sender you may contact the sender with your request. + +Do Not Share This Email +This email contains a secure link to DocuSign. Please do not share this email, link, or access code with others. +[[Conditional:ExpirationUrl]]Click here to expire the above link to the document + +Questions about the Document? +If you need to modify the document or have questions about the details in the document, please reach out to the sender by emailing them directly. + +[[Conditional:ReportAbuseUrl]]Stop receiving this email +[[Conditional:ReportAbuseUrl]]Report this email [[Data:ReportAbuseUrl]] +[[Conditional:ReportAbuseUrl]]Declining to sign [[Support.DecliningToSignUrl]] +[[Conditional:ReportAbuseUrl]]Managing notifications [[Support.ManagingNotificationsUrl]] + +If you are having trouble signing the document, please visit the Help with Signing page on our Support Center. +https://support.docusign.com/articles/How-do-I-sign-a-DocuSign-document-Basic-Signing + + +Delivery Failed for [[Data:RecipientName]] + + +Hello [[Data:RecipientName]], + +All signers completed [[Data:SubjectInput]] + +[[Data:Information]] + +Review the document your recipients have signed, and the following payment(s) + +[[Data:QuickURL]] + +If clicking the link does not work, you can highlight and copy the entire line above and paste it into your browser to get started. + +This message was sent to you by [[Data:SenderName]] who is using the DocuSign Electronic Signature Service. If you would rather not receive email from this sender you may contact the sender with your request. + +Do Not Share This Email +This email contains a secure link to DocuSign. Please do not share this email, link, or access code with others. +[[Conditional:ExpirationUrl]]Click here to expire the above link to the document + +Questions about the Document? +If you need to modify the document or have questions about the details in the document, please reach out to the sender by emailing them directly. + +[[Conditional:ReportAbuseUrl]]Stop receiving this email +[[Conditional:ReportAbuseUrl]]Report this email [[Data:ReportAbuseUrl]] +[[Conditional:ReportAbuseUrl]]Declining to sign [[Support.DecliningToSignUrl]] +[[Conditional:ReportAbuseUrl]]Managing notifications [[Support.ManagingNotificationsUrl]] + +If you are having trouble signing the document, please visit the Help with Signing page on our Support Center. +https://support.docusign.com/articles/How-do-I-sign-a-DocuSign-document-Basic-Signing + + +Completed: [[Data:SubjectInput]] + + +Hello [[Data:RecipientName]], + +[[Data:DeclinerName]] gave the following reasons: + +[[Data:DeclineReason]] + +As a result, [[Data:Subject]] cannot be completed. + +No Content + +[[Data:QuickURL]] + +If clicking the link does not work, you can highlight and copy the entire line above and paste it into your browser to get started. + +This message was sent to you by [[Data:SenderName]] who is using the DocuSign Electronic Signature Service. If you would rather not receive email from this sender you may contact the sender with your request. + +Do Not Share This Email +This email contains a secure link to DocuSign. Please do not share this email, link, or access code with others. +[[Conditional:ExpirationUrl]]Click here to expire the above link to the document + +Questions about the Document? +If you need to modify the document or have questions about the details in the document, please reach out to the sender by emailing them directly. + +[[Conditional:ReportAbuseUrl]]Stop receiving this email +[[Conditional:ReportAbuseUrl]]Report this email [[Data:ReportAbuseUrl]] +[[Conditional:ReportAbuseUrl]]Declining to sign [[Support.DecliningToSignUrl]] +[[Conditional:ReportAbuseUrl]]Managing notifications [[Support.ManagingNotificationsUrl]] + +If you are having trouble signing the document, please visit the Help with Signing page on our Support Center. +https://support.docusign.com/articles/How-do-I-sign-a-DocuSign-document-Basic-Signing + + +Declined: [[Data:SubjectInput]] + + +Hello [[Data:SenderName]], + +[[Data:FailedRecipientName]] has attempted to offline sign the envelope '[[Data:Subject]]' (ID:[[Data:EnvelopeID]]), but the envelope has failed to synchronize. + +As a result, the envelope is still awaiting signature. + +To view the document, click the link below: + +[[Data:QuickURL]] + +If clicking the link does not work, you can highlight and copy the entire line above and paste it into your browser to get started. + +This message was sent to you by [[Data:SenderName]] who is using the DocuSign Electronic Signature Service. If you would rather not receive email from this sender you may contact the sender with your request. + +Do Not Share This Email +This email contains a secure link to DocuSign. Please do not share this email, link, or access code with others. +[[Conditional:ExpirationUrl]]Click here to expire the above link to the document + +Questions about the Document? +If you need to modify the document or have questions about the details in the document, please reach out to the sender by emailing them directly. + +[[Conditional:ReportAbuseUrl]]Stop receiving this email +[[Conditional:ReportAbuseUrl]]Report this email [[Data:ReportAbuseUrl]] +[[Conditional:ReportAbuseUrl]]Declining to sign [[Support.DecliningToSignUrl]] +[[Conditional:ReportAbuseUrl]]Managing notifications [[Support.ManagingNotificationsUrl]] + +If you are having trouble signing the document, please visit the Help with Signing page on our Support Center. +https://support.docusign.com/articles/How-do-I-sign-a-DocuSign-document-Basic-Signing + + +Offline signing failed: [[Data:SubjectInput]] + + +Hello [[Data:SenderName]], + +[[Data:RecipientName]] is temporarily locked out of their account + +[[Data:RecipientName]] is temporarily locked out of "[[Data:Subject]]" because they failed too many login attempts. After a short period of time, they can try to login again. They cannot sign "[[Data:Subject]]" until they securely login. + +We'll let you know when [[Data:RecipientName]] successfully signs "[[Data:Subject]]". Or you may review and correct the envelope. + +[[Data:QuickURL]] + +If clicking the link does not work, you can highlight and copy the entire line above and paste it into your browser to get started. + +This message was sent to you by [[Data:SenderName]] who is using the DocuSign Electronic Signature Service. If you would rather not receive email from this sender you may contact the sender with your request. + +Do Not Share This Email +This email contains a secure link to DocuSign. Please do not share this email, link, or access code with others. +[[Conditional:ExpirationUrl]]Click here to expire the above link to the document + +Questions about the Document? +If you need to modify the document or have questions about the details in the document, please reach out to the sender by emailing them directly. + +[[Conditional:ReportAbuseUrl]]Stop receiving this email +[[Conditional:ReportAbuseUrl]]Report this email [[Data:ReportAbuseUrl]] +[[Conditional:ReportAbuseUrl]]Declining to sign [[Support.DecliningToSignUrl]] +[[Conditional:ReportAbuseUrl]]Managing notifications [[Support.ManagingNotificationsUrl]] + +If you are having trouble signing the document, please visit the Help with Signing page on our Support Center. +https://support.docusign.com/articles/How-do-I-sign-a-DocuSign-document-Basic-Signing + + +[[Data:RecipientName]] failed too many login attempts + + +Hello [[Data:RecipientName]], + +[[Data:SenderName]] has signed a document using DocuSign. + +Select VIEW DOCUMENT to securely view and download your documents.[[Conditional:EmailBlurb]] Here is the message: + +[[Conditional:EmailBlurb]][[Data:EmailBlurb]] + +No Content + +[[Data:QuickURL]] + +If clicking the link does not work, you can highlight and copy the entire line above and paste it into your browser to get started. + +This message was sent to you by [[Data:SenderName]] who is using the DocuSign Electronic Signature Service. If you would rather not receive email from this sender you may contact the sender with your request. + +Do Not Share This Email +This email contains a secure link to DocuSign. Please do not share this email, link, or access code with others. +[[Conditional:ExpirationUrl]]Click here to expire the above link to the document + +Questions about the Document? +If you need to modify the document or have questions about the details in the document, please reach out to the sender by emailing them directly. + +[[Conditional:ReportAbuseUrl]]Stop receiving this email +[[Conditional:ReportAbuseUrl]]Report this email [[Data:ReportAbuseUrl]] +[[Conditional:ReportAbuseUrl]]Declining to sign [[Support.DecliningToSignUrl]] +[[Conditional:ReportAbuseUrl]]Managing notifications [[Support.ManagingNotificationsUrl]] + +If you are having trouble signing the document, please visit the Help with Signing page on our Support Center. +https://support.docusign.com/articles/How-do-I-sign-a-DocuSign-document-Basic-Signing + + +Here is your signed [[Data:Subject]] + + +Your Signed Document + +No Content + +[[Data:QuickURL]] + +If clicking the link does not work, you can highlight and copy the entire line above and paste it into your browser to get started. + +This message was sent to you by [[Data:SenderName]] who is using the DocuSign Electronic Signature Service. If you would rather not receive email from this sender you may contact the sender with your request. + +Do Not Share This Email +This email contains a secure link to DocuSign. Please do not share this email, link, or access code with others. +[[Conditional:ExpirationUrl]]Click here to expire the above link to the document + +Questions about the Document? +If you need to modify the document or have questions about the details in the document, please reach out to the sender by emailing them directly. + +[[Conditional:ReportAbuseUrl]]Stop receiving this email +[[Conditional:ReportAbuseUrl]]Report this email [[Data:ReportAbuseUrl]] +[[Conditional:ReportAbuseUrl]]Declining to sign [[Support.DecliningToSignUrl]] +[[Conditional:ReportAbuseUrl]]Managing notifications [[Support.ManagingNotificationsUrl]] + +If you are having trouble signing the document, please visit the Help with Signing page on our Support Center. +https://support.docusign.com/articles/How-do-I-sign-a-DocuSign-document-Basic-Signing + + +[[Data:Subject]] + + +Hello [[Data:RecipientName]], + +You have attempted to offline sign the envelope '[[Data:Subject]]' (ID:[[Data:EnvelopeID]]), but the envelope has failed to synchronize. + +As a result, the envelope is still awaiting signature. + +To view the document, click the link below: + +[[Data:QuickURL]] + +If clicking the link does not work, you can highlight and copy the entire line above and paste it into your browser to get started. + +This message was sent to you by [[Data:SenderName]] who is using the DocuSign Electronic Signature Service. If you would rather not receive email from this sender you may contact the sender with your request. + +Do Not Share This Email +This email contains a secure link to DocuSign. Please do not share this email, link, or access code with others. +[[Conditional:ExpirationUrl]]Click here to expire the above link to the document + +Questions about the Document? +If you need to modify the document or have questions about the details in the document, please reach out to the sender by emailing them directly. + +[[Conditional:ReportAbuseUrl]]Stop receiving this email +[[Conditional:ReportAbuseUrl]]Report this email [[Data:ReportAbuseUrl]] +[[Conditional:ReportAbuseUrl]]Declining to sign [[Support.DecliningToSignUrl]] +[[Conditional:ReportAbuseUrl]]Managing notifications [[Support.ManagingNotificationsUrl]] + +If you are having trouble signing the document, please visit the Help with Signing page on our Support Center. +https://support.docusign.com/articles/How-do-I-sign-a-DocuSign-document-Basic-Signing + + +Offline signing failed: [[Data:SubjectInput]] + + +[[Data:SignUpInvitationCustomPlainBodyStart]] +[[Data:QuickURL]] +[[Data:SignUpInvitationCustomPlainBodyEnd]] + + +[[Data:Subject]] + + +Hello [[Data:RecipientName]], + + Two-step verification settings have changed + +[[Conditional:TwoFactorAuthEnabled]]Two-step verification has been enabled on your account. When logging in to DocuSign, you will now be prompted for additional verification. + [[Conditional:TwoFactorAuthDisabled]]Two-step verification has been disabled on your DocuSign account. + +Please log in to your DocuSign account to change your settings. + +This message was sent to you by [[Data:SenderName]] who is using the DocuSign Electronic Signature Service. If you would rather not receive email from this sender you may contact the sender with your request. + +Do Not Share This Email +This email contains a secure link to DocuSign. Please do not share this email, link, or access code with others. +[[Conditional:ExpirationUrl]]Click here to expire the above link to the document + + +Your DocuSign login settings have been updated + + +Hello [[Data:RecipientName]], + +Thank you for choosing DocuSign. + +Thank you for signing up for a DocuSign eSignature trial. It appears that you already have a free DocuSign account associated with your email address [[Data:ToEmail]]. + +In order to help you experience the full power of DocuSign eSignature, we’re offering you a free 30-day trial with access to advanced features and functionality. To update your account, simply click the FREE TRIAL button above. + +[[Data:QuickURL]] + +If clicking the link does not work, you can highlight and copy the entire line above and paste it into your browser to get started. + +This message was sent to you by [[Data:SenderName]] who is using the DocuSign Electronic Signature Service. If you would rather not receive email from this sender you may contact the sender with your request. + +Do Not Share This Email +This email contains a secure link to DocuSign. Please do not share this email, link, or access code with others. +[[Conditional:ExpirationUrl]]Click here to expire the above link to the document + +Questions about the Document? +If you need to modify the document or have questions about the details in the document, please reach out to the sender by emailing them directly. + +[[Conditional:ReportAbuseUrl]]Stop receiving this email +[[Conditional:ReportAbuseUrl]]Report this email [[Data:ReportAbuseUrl]] +[[Conditional:ReportAbuseUrl]]Declining to sign [[Support.DecliningToSignUrl]] +[[Conditional:ReportAbuseUrl]]Managing notifications [[Support.ManagingNotificationsUrl]] + +If you are having trouble signing the document, please visit the Help with Signing page on our Support Center. +https://support.docusign.com/articles/How-do-I-sign-a-DocuSign-document-Basic-Signing + + +Unlock Your Free Trial Account + + +Hello [[Data:RecipientName]], + +Please select the ACTIVATE button above to finish your account activation. + +Thank you for choosing DocuSign. + +[[Data:QuickURL]] + +If clicking the link does not work, you can highlight and copy the entire line above and paste it into your browser to get started. + +This message was sent to you by [[Data:SenderName]] who is using the DocuSign Electronic Signature Service. If you would rather not receive email from this sender you may contact the sender with your request. + +Do Not Share This Email +This email contains a secure link to DocuSign. Please do not share this email, link, or access code with others. +[[Conditional:ExpirationUrl]]Click here to expire the above link to the document + +Questions about the Document? +If you need to modify the document or have questions about the details in the document, please reach out to the sender by emailing them directly. + +[[Conditional:ReportAbuseUrl]]Stop receiving this email +[[Conditional:ReportAbuseUrl]]Report this email [[Data:ReportAbuseUrl]] +[[Conditional:ReportAbuseUrl]]Declining to sign [[Support.DecliningToSignUrl]] +[[Conditional:ReportAbuseUrl]]Managing notifications [[Support.ManagingNotificationsUrl]] + +If you are having trouble signing the document, please visit the Help with Signing page on our Support Center. +https://support.docusign.com/articles/How-do-I-sign-a-DocuSign-document-Basic-Signing + + +Account Activation + + +[[Data:UserToAccountInviteCustomPlainBodyStart]] +[[Data:QuickURL]] +[[Data:UserToAccountInviteCustomPlainBodyEnd]] + + +[[Data:Subject]] + + +Hello [[Data:RecipientName]], + +We received a FAX from you of FaxId [[Data:FaxId]] for envelope [[Data:EnvelopeID]], but our records indicate you canceled the FAX transaction. + +If it was not your intention to cancel this FAX transaction, please contact the sender, [[Data:SenderName]]. + +This message was sent to you by [[Data:SenderName]] who is using the DocuSign Electronic Signature Service. If you would rather not receive email from this sender you may contact the sender with your request. + +Do Not Share This Email +This email contains a secure link to DocuSign. Please do not share this email, link, or access code with others. +[[Conditional:ExpirationUrl]]Click here to expire the above link to the document + +Questions about the Document? +If you need to modify the document or have questions about the details in the document, please reach out to the sender by emailing them directly. + +[[Conditional:ReportAbuseUrl]]Stop receiving this email +[[Conditional:ReportAbuseUrl]]Report this email [[Data:ReportAbuseUrl]] +[[Conditional:ReportAbuseUrl]]Declining to sign [[Support.DecliningToSignUrl]] +[[Conditional:ReportAbuseUrl]]Managing notifications [[Support.ManagingNotificationsUrl]] + +If you are having trouble signing the document, please visit the Help with Signing page on our Support Center. +https://support.docusign.com/articles/How-do-I-sign-a-DocuSign-document-Basic-Signing + + +[[Data:SubjectInput]] + + +Hello [[Data:RecipientName]], + +[[Data:RecipientName]] elected to withdraw their consent to sign online with your company using [[Data:ProductName]]. As a result, you should contact them to determine how they wish to receive documents from you in the future. + +This message was sent to you by [[Data:SenderName]] who is using the DocuSign Electronic Signature Service. If you would rather not receive email from this sender you may contact the sender with your request. + +Do Not Share This Email +This email contains a secure link to DocuSign. Please do not share this email, link, or access code with others. +[[Conditional:ExpirationUrl]]Click here to expire the above link to the document + +Questions about the Document? +If you need to modify the document or have questions about the details in the document, please reach out to the sender by emailing them directly. + +[[Conditional:ReportAbuseUrl]]Stop receiving this email +[[Conditional:ReportAbuseUrl]]Report this email [[Data:ReportAbuseUrl]] +[[Conditional:ReportAbuseUrl]]Declining to sign [[Support.DecliningToSignUrl]] +[[Conditional:ReportAbuseUrl]]Managing notifications [[Support.ManagingNotificationsUrl]] + +If you are having trouble signing the document, please visit the Help with Signing page on our Support Center. +https://support.docusign.com/articles/How-do-I-sign-a-DocuSign-document-Basic-Signing + + +Withdrawn Consent to Sign Online + + +Hello [[Data:RecipientName]], + +[[Data:SenderName]] has sent you a new DocuSign document to view and sign. Please click on the link below to begin signing. + +[[Conditional:RequireAccountActivation]]Please check your email for an Account Activation message. Once you activate your free account, you can review and sign your documents. + + [[Data:RecipientNote]] + +[[Conditional:ShowDigitalCertSafe]]Step 1: Confirm you have a valid digital certificate with [[Data:DigitalCertificateIssuer]] and log in to your account. If you don't have one, please sign up for one now using this link: [[Data:DigitalCertificateIssuerLink]] +[[Conditional:ShowDigitalCertSafe]]Step 2: Review and sign your documents. You will be asked to log in to your digital certificate account during the signing process. +[[Conditional:ShowDigitalCertExpress]]The Sender has requested that this document be digitally signed via the application of a DocuSign Express Digital Certificate. This digital certificate will be automatically issued and applied for you during the signing process. +[[Conditional:ShowDigitalCertOpenTrust]]The Sender has required this document to be digitally signed via the application of an OpenTrust Protect & Sign digital signature. A digital certificate will be automatically issued and applied for the Signer during the signing process. +[[Conditional:ShowDigitalCertICPBrazil]]The Sender has required this document to be digitally signed via a ICP-Brazil Digital Signature. The Signer will be asked to select their digital certificate during the signing process. +[[Conditional:ShowDigitalCertNovartis]]The Sender has required this document to be digitally signed via a Novartis Digital Signature. The Signer will be asked to select their digital certificate during the signing process. + +[[Conditional:IsExpirationMail]]Expiration Pending: This document will expire on [[Data:EnvelopeExpirationDate]]. + + [[Conditional:IsCFRPart11Compliant]]Part 11 Module Enabled + +[[Conditional:IsEnvelopeContainingMultipleDocuments]]REVIEW DOCUMENTS +[[Conditional:IsEnvelopeContainingSingleDocument]]REVIEW DOCUMENT + +[[Data:QuickURL]] + +If clicking the link does not work, you can highlight and copy the entire line above and paste it into your browser to get started. + +This message was sent to you by [[Data:SenderName]] who is using the DocuSign Electronic Signature Service. If you would rather not receive email from this sender you may contact the sender with your request. + +Do Not Share This Email +This email contains a secure link to DocuSign. Please do not share this email, link, or access code with others. +[[Conditional:ExpirationUrl]]Click here to expire the above link to the document + +Questions about the Document? +If you need to modify the document or have questions about the details in the document, please reach out to the sender by emailing them directly. + +[[Conditional:ReportAbuseUrl]]Stop receiving this email +[[Conditional:ReportAbuseUrl]]Report this email [[Data:ReportAbuseUrl]] +[[Conditional:ReportAbuseUrl]]Declining to sign [[Support.DecliningToSignUrl]] +[[Conditional:ReportAbuseUrl]]Managing notifications [[Support.ManagingNotificationsUrl]] + +If you are having trouble signing the document, please visit the Help with Signing page on our Support Center. +https://support.docusign.com/articles/How-do-I-sign-a-DocuSign-document-Basic-Signing + + +Invitation to witness: [[Data:SubjectInput]] + + +Hello [[Data:RecipientName]], + +[[Data:SenderCompany]] sent you documents to view and sign. Please click on the 'REVIEW DOCUMENTS' link below to begin signing. + +[[Conditional:ShowDigitalCertSafe]]Step 1: Confirm you have a valid digital certificate with [[Data:DigitalCertificateIssuer]] and log in to your account. If you don't have one, please sign up for one now using this link: [[Data:DigitalCertificateIssuerLink]] +[[Conditional:ShowDigitalCertSafe]]Step 2: Review and sign your documents. You will be asked to log in to your digital certificate account during the signing process. +[[Conditional:ShowDigitalCertExpress]]The Sender has requested that this document be digitally signed via the application of a DocuSign Express Digital Certificate. This digital certificate will be automatically issued and applied for you during the signing process. +[[Conditional:ShowDigitalCertOpenTrust]]The Sender has required this document to be digitally signed via the application of an OpenTrust Protect & Sign digital signature. A digital certificate will be automatically issued and applied for the Signer during the signing process. +[[Conditional:ShowDigitalCertICPBrazil]]The Sender has required this document to be digitally signed via a ICP-Brazil Digital Signature. The Signer will be asked to select their digital certificate during the signing process. +[[Conditional:ShowDigitalCertNovartis]]The Sender has required this document to be digitally signed via a Novartis Digital Signature. The Signer will be asked to select their digital certificate during the signing process. + +[[Conditional:IsExpirationMail]]Expiration Pending: This document will expire on [[Data:EnvelopeExpirationDate]]. + +REVIEW DOCUMENTS + +[[Data:QuickURL]] + +If clicking the link does not work, you can highlight and copy the entire line above and paste it into your browser to get started. + +This message was sent to you by [[Data:SenderName]] who is using the DocuSign Electronic Signature Service. If you would rather not receive email from this sender you may contact the sender with your request. + +Do Not Share This Email +This email contains a secure link to DocuSign. Please do not share this email, link, or access code with others. +[[Conditional:ExpirationUrl]]Click here to expire the above link to the document + +Questions about the Document? +If you need to modify the document or have questions about the details in the document, please reach out to the sender by emailing them directly. + +[[Conditional:ReportAbuseUrl]]Stop receiving this email +[[Conditional:ReportAbuseUrl]]Report this email [[Data:ReportAbuseUrl]] +[[Conditional:ReportAbuseUrl]]Declining to sign [[Support.DecliningToSignUrl]] +[[Conditional:ReportAbuseUrl]]Managing notifications [[Support.ManagingNotificationsUrl]] + +If you are having trouble signing the document, please visit the Help with Signing page on our Support Center. +https://support.docusign.com/articles/How-do-I-sign-a-DocuSign-document-Basic-Signing + + +[[Conditional:IsExpirationMail]]Expiration Pending: +[[Conditional:IsReminderMail]]Reminder: +You have documents to review and sign. + + +Hello [[Data:RecipientName]], + +[[Data:SenderName]] invited you to join the room, [[Data:WorkspaceName]]. Please click on the 'JOIN ROOM' link below to join this room. + +[[Conditional:ShowDigitalCertSafe]]Step 1: Confirm you have a valid digital certificate with [[Data:DigitalCertificateIssuer]] and log in to your account. If you don't have one, please sign up for one now using this link: [[Data:DigitalCertificateIssuerLink]] +[[Conditional:ShowDigitalCertSafe]]Step 2: Review and sign your documents. You will be asked to log in to your digital certificate account during the signing process. +[[Conditional:ShowDigitalCertExpress]]The Sender has requested that this document be digitally signed via the application of a DocuSign Express Digital Certificate. This digital certificate will be automatically issued and applied for you during the signing process. +[[Conditional:ShowDigitalCertOpenTrust]]The Sender has required this document to be digitally signed via the application of an OpenTrust Protect & Sign digital signature. A digital certificate will be automatically issued and applied for the Signer during the signing process. +[[Conditional:ShowDigitalCertICPBrazil]]The Sender has required this document to be digitally signed via a ICP-Brazil Digital Signature. The Signer will be asked to select their digital certificate during the signing process. +[[Conditional:ShowDigitalCertNovartis]]The Sender has required this document to be digitally signed via a Novartis Digital Signature. The Signer will be asked to select their digital certificate during the signing process. + +JOIN ROOM + +[[Data:QuickURL]] + +If clicking the link does not work, you can highlight and copy the entire line above and paste it into your browser to get started. + +This message was sent to you by [[Data:SenderName]] who is using the DocuSign Electronic Signature Service. If you would rather not receive email from this sender you may contact the sender with your request. + +Do Not Share This Email +This email contains a secure link to DocuSign. Please do not share this email, link, or access code with others. +[[Conditional:ExpirationUrl]]Click here to expire the above link to the document + +Questions about the Document? +If you need to modify the document or have questions about the details in the document, please reach out to the sender by emailing them directly. + +[[Conditional:ReportAbuseUrl]]Stop receiving this email +[[Conditional:ReportAbuseUrl]]Report this email [[Data:ReportAbuseUrl]] +[[Conditional:ReportAbuseUrl]]Declining to sign [[Support.DecliningToSignUrl]] +[[Conditional:ReportAbuseUrl]]Managing notifications [[Support.ManagingNotificationsUrl]] + +If you are having trouble signing the document, please visit the Help with Signing page on our Support Center. +https://support.docusign.com/articles/How-do-I-sign-a-DocuSign-document-Basic-Signing + + +[[Conditional:Subject]][[Data:Subject]] +[[Conditional:SubjectInput]]Invitation to join [[Data:WorkspaceName]] + + + + \ No newline at end of file diff --git a/test/unit_tests.py b/test/unit_tests.py index 1fbac5a1..8ccd1ad7 100644 --- a/test/unit_tests.py +++ b/test/unit_tests.py @@ -17,8 +17,10 @@ BaseUrl = "https://demo.docusign.net/restapi" OauthHostName = "account-d.docusign.com" SignTest1File = "{}/docs/SignTest1.pdf".format(os.path.dirname(os.path.abspath(__file__))) +brandFile = "{}/docs/brand.xml".format(os.path.dirname(os.path.abspath(__file__))) TemplateId = os.environ.get("TEMPLATE_ID") UserId = os.environ.get("USER_ID") +BrandId = os.environ.get("BRAND_ID") PrivateKeyBytes = base64.b64decode(os.environ.get("PRIVATE_KEY")) @@ -95,6 +97,35 @@ def testLogin(self): print("\nException when calling DocuSign API: %s" % e) assert e is None # make the test case fail in case of an API exception + def testTemplateGet(self): + try: + from docusign_esign import TemplatesApi + template_api = TemplatesApi(self.api_client) + + template_obj = template_api.get(self.user_info.accounts[0].account_id, template_id=TemplateId).to_dict() + print(template_obj) + + assert template_obj is not None + assert template_obj['uri'] is not None + + except ApiException as e: + print("\nException when calling DocuSign API: %s" % e) + assert e is None # make the test case fail in case of an API exception + + def testPutUpdateBrandResourceByContentType(self): + try: + from docusign_esign import AccountsApi + acc_api = AccountsApi(self.api_client) + acc_obj = acc_api.update_brand_resources_by_content_type(self.user_info.accounts[0].account_id, BrandId, "email", brandFile) + print(acc_obj) + + assert acc_obj is not None + assert acc_obj.resources_content_uri is not None + + except ApiException as e: + print("\nException when calling DocuSign API: %s" % e) + assert e is None # make the test case fail in case of an API exception + def testRequestASignature(self): with open(SignTest1File, 'rb') as sign_file: file_contents = sign_file.read()