# fluent-cart/1.5.4/app/Views/emails/order/placed/admin.php

FluentCart A New Era of eCommerce – Faster, Lighter, and Simpler, version 1.5.4. 41 lines.

- Page: https://pluginprobe.com/plugins/fluent-cart/1.5.4/code/app/Views/emails/order/placed/admin.php
- Raw: https://pluginprobe.com/plugins/fluent-cart/1.5.4/raw/app/Views/emails/order/placed/admin.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.5.4/code/app/Views/emails/order/placed/admin.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's full name */
            esc_html__('%s just placed a new order using offline payment method. Here are the details:', 'fluent-cart'),
            esc_html($order->customer->full_name)
        );
        ?>
    </p>
</div>

<?php

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

echo '<hr />';

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

echo '<hr />';

\FluentCart\App\App::make('view')->render('emails.parts.call_to_action_box', [
    'content'     => __('To view more details of this order, please check the order detail page.', 'fluent-cart'),
    'link'        => $order->getViewUrl('admin'),
    'button_text' => __('View Details', 'fluent-cart')
]);

```
