Subject Line:

{{ $template->subject }}

Email Content:

{!! $template->body !!}

Sample with Placeholders Replaced:

Subject: {{ str_replace(['{recipient_name}', '{company_name}'], ['John Doe', 'Acme Corporation'], $template->subject) }}

{!! str_replace(['{recipient_name}', '{company_name}'], ['John Doe', 'Acme Corporation'], $template->body) !!}

Available Placeholders: