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

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

{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