@extends('admin.layout')
@section('content')
| Short Code |
Meaning |
@if ($template->email_type == 'email_verification')
|
{customer_username}
|
Customer Username
|
@endif
@if ($template->email_type != 'email_verification' && $template->email_type != 'donation')
|
{customer_name}
|
Customer Name
|
@endif
@if ($template->email_type == 'email_verification')
|
{verification_link}
|
Verification Link
|
@endif
@if ($template->email_type == 'package_order' || $template->email_type == 'package_subscription')
|
{package_name}
|
Package Name
|
@endif
@if ($template->email_type == 'course_enroll')
|
{course_name}
|
Course Name
|
@endif
@if ($template->email_type == 'donation')
|
{cause_name}
|
Cause Name
|
@endif
@if ($template->email_type == 'product_order' || $template->email_type == 'package_order' || $template->email_type == 'course_enroll')
|
{order_number}
|
Order Number
|
|
{order_link}
|
Order Details Page Link (Only for Registered User)
|
@endif
@if ($template->email_type == 'event_ticket')
|
{event_name}
|
Event Name
|
|
{ticket_id}
|
Ticket ID
|
|
{order_link}
|
Order Details Page Link (Only for Registered User)
|
@endif
@if ($template->email_type == 'package_subscription')
|
{activation_date}
|
Subscription Activation Date
|
|
{expire_date}
|
Subscription Expiry Date
|
@endif
@if ($template->email_type == 'subscription_expiry_reminder')
|
{remaining_days}
|
Number of Remaining Days to Expire Subscription
|
|
{current_package_name}
|
Currently Active Package
|
@endif
@if ($template->email_type == 'subscription_expired')
|
{packages_link}
|
packages page URL
|
|
{expired_package}
|
Expired Package Name
|
@endif
@if ($template->email_type == 'subscription_expiry_reminder' || $template->email_type == 'subscription_expired')
|
{expire_date}
|
Expire Date of Currently Active Package
|
@endif
|
{website_title}
|
Website Title
|
@endsection