@extends('layouts.app') @section('title', 'Email Templates') @section('content') {{-- Quill CSS --}}

Email Templates Email Templates Customize the subject, message, and footer of emails sent by the application. Use the available variables to automatically insert information such as the recipient name, template name, sender details, and signing links.

Customize the emails sent by your account, including signature requests, reminders, and completion notifications.

Email Templates

Create and manage templates for all outgoing system emails. Customize email subjects and message content.

Signature Request

Email sent to recepient with signature request

Available Variables Available Variables Use these variables in your email subject or message to automatically insert information from the signature request. The value is filled in when the email is sent.

{name} {companyname} {email} {templatename} {reviewlink} {senderemail} {completedlink}
@csrf
{!! $email_settings->signature_email_body ?? '' !!}

Document Complete

Email sent to everyone when a document is signed by all

Available Variables

{name} {companyname} {email} {templatename} {reviewlink} {senderemail} {completedlink}
@csrf
{!! $email_settings->complete_email_body ?? '' !!}

Signature Notification

Email sent to everyone when a document is signed by a recepient

Available Variables

{name} {companyname} {email} {templatename} {reviewlink} {senderemail} {completedlink}
@csrf
{!! $email_settings->signed_email_body ?? '' !!}

Signature Reminder

Email sent to recepient reminding pending signature

Available Variables

{name} {companyname} {email} {templatename} {reviewlink} {senderemail} {completedlink}
@csrf
{!! $email_settings->reminder_email_body ?? '' !!}

Signature Declined

Email sent to recepient when a document is declined

Available Variables

{name} {companyname} {email} {templatename} {reviewlink} {senderemail} {completedlink}
@csrf
{!! $email_settings->declined_email_body ?? '' !!}

Default Footer

Default footer text for all outgoing emails

Available Variables

{name} {companyname} {email} {templatename} {reviewlink} {senderemail} {completedlink}
@csrf
{{-- Quill JS CDN --}} @endsection