mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-03 09:08:44 -04:00
15 lines
574 B
HTML
15 lines
574 B
HTML
{% from "components/components/inset-text/macro.njk" import usaInsetText %}
|
|
|
|
<h2 class="heading-medium">
|
|
Send a document by email
|
|
</h2>
|
|
<p class="usa-body">
|
|
Use double brackets to add a placeholder field to your template. This will contain a secure link to download the document.
|
|
</p>
|
|
{{ usaInsetText({
|
|
"text": "Download your document at: ((link_to_file))",
|
|
"classes": ""})
|
|
}}
|
|
|
|
Next, use the API to upload your document. Follow the instructions to send a document by email in the <a class="usa-link" href="{{ url_for('main.documentation') }}">API documentation</a>.
|