|
Dear {{ recipient.name if recipient is defined else details.name }},
{% if status_type is defined and status_type == 'unpaid' %}
{% if is_team is defined and is_team %}
your team payment for {{ details.game }} could not be confirmed. Please share a screenshot of your payment to nexora.esport.support@gmail.com or WhatsApp us at +92 331 0314962.
{% else %}
your payment for {{ details.game }} could not be confirmed. Please share a screenshot of your payment to nexora.esport.support@gmail.com or WhatsApp us at +92 331 0314962.
{% endif %}
{% else %}
{% if is_team is defined and is_team %}
your team registration has been submitted successfully for {{ details.game }}. Your payment is pending admin approval.
{% else %}
your registration has been submitted successfully for {{ details.game }}. Your payment is pending admin approval.
{% endif %}
{% endif %}
{% if is_team is defined and is_team and roster is defined and roster %}
Team Roster
{% for line in roster %}
{{ line }}
{% endfor %}
{% endif %}
{% if status_type is defined and status_type == 'unpaid' %}
UNPAID - Payment Not Confirmed
Your payment could not be verified. The attached PDF is a pending registration record only and is not valid for event entry.
{% else %}
UNPAID - Payment Pending
The attached PDF is a pending registration record only and is not valid for event entry. You will receive a PAID and CONFIRMED ticket once payment is approved.
{% endif %}
{% if status_type is defined and status_type == 'unpaid' %}
Action Required: Share Payment Screenshot
Please take a screenshot of your payment confirmation and email it to us at:
nexora.esport.support@gmail.com
Or WhatsApp us directly at +92 331 0314962
Include your registration reference {{ details.ref }} in the subject/message. Our team will verify and update your status as soon as possible.
{% endif %}
{% for label, value in [
('Name', details.name),
('Email', details.email),
('Contact Number', details.phone),
('CNIC', details.cnic),
('Game Applied', details.game),
('Platform', details.platform),
('Entry Type', details.entry_type),
('Member Count', details.member_count),
('Team Name', details.team_name),
('Leader Name', details.leader_name),
('Ticket Number', details.ticket_number),
('Amount Received', payment_received if payment_received is defined else 'Rs. 0'),
('Amount Due', payment_due if payment_due is defined else 'Rs. 0'),
('Applied Date & Time', details.created_at),
('Payment Status', 'UNPAID - Payment Not Confirmed' if (status_type is defined and status_type == 'unpaid') else 'Waiting For Admin Approval')
] %}
| {{ label }} |
{{ value }} |
{% endfor %}
Event: {{ settings.event_date | pretty_dt }}
Venue: {{ settings.event_venue }}{% if settings.event_city %}, {{ settings.event_city }}{% endif %}
If you did not expect this email, please contact nexora.esport.support@gmail.com or WhatsApp +92 331 0314962
|