@extends('layouts.admin.master') @section('title','Email Templates') @section('content') @include('layouts.admin.flash.alert')

Manage Email Templates Here you can manage the email templates

{{ __('List Email Templates') }}

@if (!$emailTemplates->isEmpty()) @else
Record Not Available
@endif

Important Rules

For each email style or email preference that would be added to the system, make sure it has these hooks:

  • ##SYSTEM_LOGO## - Will be replaced by logo from the admin settings.
  • ##SYSTEM_APPLICATION_NAME## - Will be replaced by application name from admin settings.
  • ##EMAIL_CONTENT## - Will be replaced by email message from email hook settings.
  • ##EMAIL_FOOTER## - Will be replaced by email footer from email hook settings.
@stop