{% extends 'email/base.html.twig' %} {% block title %}Quote Request Received - KitsCo{% endblock %} {% block content %}
📋

Quote Request Received

Thank you, {{ customer.name }}. We've received your quote request and will respond shortly.

Request #{{ requestNumber|default('QR-' ~ 'now'|date('YmdHis')) }}

Our team is reviewing your request and will prepare a detailed quotation for you.

{% if customer.organization is defined and customer.organization %} {% endif %}
Request Date {{ 'now'|date('F d, Y') }}
Contact Name {{ customer.name }}
Organization {{ customer.organization }}
Email {{ customer.contactEmail }}
{% if items is defined and items|length > 0 %}

Items Requested

{% for item in items %} {% endfor %}
Product Qty
{{ item.product.name }} {% if item.product.sku %}
SKU: {{ item.product.sku }}{% endif %}
{{ item.quantity }}
{% endif %} {% if notes is defined and notes %}

Additional Notes

{{ notes }}

{% endif %}

What Happens Next?

  1. Our sales team will review your request
  2. We'll check product availability and pricing
  3. You'll receive a detailed quotation via email
  4. Quotations are typically sent within 24-48 hours

Need this quote urgently? Contact our sales team directly.

Email: sales@kits.co.tz {% if company.phone is defined and company.phone %}
Phone: {{ company.phone }} {% endif %}

{% endblock %}