# fluent-cart/1.3.21/app/Views/emails/order/shipped/customer.php

FluentCart A New Era of eCommerce – Faster, Lighter, and Simpler, version 1.3.21. 51 lines.

- Page: https://pluginprobe.com/plugins/fluent-cart/1.3.21/code/app/Views/emails/order/shipped/customer.php
- Raw: https://pluginprobe.com/plugins/fluent-cart/1.3.21/raw/app/Views/emails/order/shipped/customer.php
- Modified: 2026-04-07T13:41:30+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/fluent-cart/1.3.21/code/app/Views/emails/order/shipped/customer.php#L10-L20`.

```php
<?php if ( ! defined( 'ABSPATH' ) ) exit; ?>
<?php
/**
 * @var $order \FluentCart\App\Models\Order
 */
?>

    <div class="space_bottom_30">
        <p>
            <?php
                printf(
                    /** translators: %s is the customer name */
                    esc_html__( 'Hello %s,', 'fluent-cart' ),
                    esc_html( $order->customer->full_name )
                );
            ?>
        </p>
        <p>
            <?php echo esc_html__( 'Great news! Your order is on its way to you 📦.', 'fluent-cart' ); ?>
        </p>
    </div>

<?php

\FluentCart\App\App::make('view')->render('emails.parts.items_table', [
    'order'          => $order,
    'formattedItems' => $order->order_items,
    'heading'        => esc_html__('Order Summary', 'fluent-cart'),
]);

$downloads = $order->getDownloads();
if($downloads) {
    \FluentCart\App\App::make('view')->render('emails.parts.downloads', [
        'order'         => $order,
        'heading'       => esc_html__('Downloads', 'fluent-cart'),
        'downloadItems' => $downloads,
    ]);
}

echo '<hr />';

\FluentCart\App\App::make('view')->render('emails.parts.addresses', [
    'order' => $order,
]);

\FluentCart\App\App::make('view')->render('emails.parts.call_to_action_box', [
    'content'     => esc_html__('Thank you for choosing us! We hope you’re excited about your order. If you have any questions, feel free to reach out.', 'fluent-cart'),
    'link'        => $order->getViewUrl('customer'),
    'button_text' => esc_html__('View Details', 'fluent-cart'),
]);

```
