首页 > 解决方案 > 在 DocuSign 模板中使用 mailto 协议创建超链接

问题描述

在 DocuSign 模板中,我想设置一个带有mailto协议、TO、CC、主题等的超链接。类似下面的内容将打开默认邮件客户端撰写窗口,其中预先填充了给定的信息。

mailto:intake@gmail.com?CC=copy-to@gmail.com&Subject=email-subject-goes-here&Body=Please-attach-your-your-files

我知道如何使用模板中的自定义文本字段使用 http 协议创建简单的超链接。但同样的方法不适用于 mailto 协议。

在此处的 DocuSign 支持页面https://support.docusign.com/s/question/0D51W000069k8jZ/adding-email-hyperlink-in-a-template上提出了相同的问题,但没有结论性的答案。

有人可以帮忙吗,如果可以在docusign模板上与mailto promotocol链接吗?

标签: docusignapi

解决方案


我不相信当前存在在自定义文本字段中启用 mailto 方案的功能。

但是,有一种解决方法...如果您特别受此要求的激励,则可以利用响应式签名功能,并且仅向 DocuSign 提供以 html 呈现的文档。

例如:POST /信封

{
    "emailSubject": "Please sign this document set",
    "documents": [
        {
            "documentId": "1",
            "name": "theDoc",
            "htmlDefinition": {
                "source": "<a href=\"mailto:test@test.com\"> Click me! </a>"
            }
        }
    ],
    "recipients": {
        "signers": [
    ...

您所有包含 mailto 方案的标签都将被接受。


推荐阅读