# emailkit/1.2.0/includes/Admin/Emails/Woocommerce/CustomerNote.php

EmailKit – Email Customizer for WooCommerce &amp; WP, version 1.2.0. 157 lines.

- Page: https://pluginprobe.com/plugins/emailkit/1.2.0/code/includes/Admin/Emails/Woocommerce/CustomerNote.php
- Raw: https://pluginprobe.com/plugins/emailkit/1.2.0/raw/includes/Admin/Emails/Woocommerce/CustomerNote.php
- Modified: 2023-11-28T13:24:06+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/emailkit/1.2.0/code/includes/Admin/Emails/Woocommerce/CustomerNote.php#L10-L20`.

```php
<?php

namespace EmailKit\Admin\Emails\Woocommerce;

use WP_Query;

defined("ABSPATH") || exit;

class CustomerNote
{

    private $db_query_class = null;

    public function __construct()
    {
        $args = [
            'post_type'  => 'emailkit',
            'meta_query' => [
                [
                    'key'   => 'emailkit_template_type',
                    'value' => 'Customer Note',
                ],
                [
                    'key'   => 'emailkit_template_status',
                    'value' => 'Active',
                ],
            ],
        ];

        $this->db_query_class = new WP_Query($args);

        if (isset($this->db_query_class->posts[0])) {
            add_action('woocommerce_email', [$this, 'remove_woocommerce_emails']);
        }

        add_filter('woocommerce_new_customer_note_notification', [$this, 'noteCustomer'], 10, 1);
    }

    /**
     * @param $email_class
     */
    public function remove_woocommerce_emails($email_class)
    {

        remove_action('woocommerce_new_customer_note_notification', [$email_class->emails['WC_Email_Customer_Note'], 'trigger']);
    }

    /**
     * @param $order
     */
    public function noteCustomer($order)
    {


        $query = $this->db_query_class;
        $email = get_option('admin_email');

        if (isset($query->posts[0])) {

            if (!empty($order)) {
                $defaults = [
                    'order_id'      => '',
                    'customer_note' => ''
                ];

                $order = wp_parse_args($order, $defaults);

                $order_id      = $order['order_id'];
                $customer_note = $order['customer_note'];
            }
            if ($order_id) {
                $order = wc_get_order($order_id);
                $html  = get_post_meta($query->posts[0]->ID, 'emailkit_template_content_html', true);

                $woocommerce_currency_settings = get_woocommerce_currency_symbol();

                foreach ($order->get_items() as $item_id => $item) {
                  $id = $item['product_id'];
                  $product_name = $item['name'];
                  $product_price = $item['product_price'];
                  $item_qty = $item['quantity'];
                  $item_total = $item['total'];
          
                  // Use the currency symbol from the WooCommerce settings
                  $currency_symbol = $woocommerce_currency_settings;
          
                  // Format the product price with the currency symbol
                  $formatted_product_price = $currency_symbol . ' ' . number_format($product_price, 2);
          
                  // Format the item total with the currency symbol
                  $formatted_item_total = $currency_symbol . ' ' . number_format($item_total, 2);
          
                  $placeholders = ["{{product_name}}", "{{quantity}}", "{{total}}", "{{product_price}}"];
                  $replacements = [$product_name, $item_qty, $formatted_item_total, $formatted_product_price];
          
                }

                $html = str_replace($placeholders, $replacements, $html);

                $shipping_first_name = $order->get_shipping_first_name();
                $shipping_last_name = $order->get_shipping_last_name();
                $shipping_full_name = $shipping_first_name . ' ' . $shipping_last_name;

                $details = [
                    "{{order_id}}" =>  $order_id,
                    "{{customer_note}}" => $customer_note,
                    "{{order_number}}" => $order->get_order_number(),
                    "{{order_status}}" => $order->get_status(),
                    "{{order_subtotal}}" => wc_price( $order->get_subtotal()),
                    "{{order_currency}}" => $order->get_currency(),
                    "{{billing_phone}}" => $order->get_billing_phone(),
                    "{{shipping_total}}" => wc_price( $order->get_shipping_total() ),
                    "{{shipping_tax_total}}" => wc_format_decimal($order->get_shipping_tax(), 2),
                    "{{order_date}}" => gmdate('Y-m-d H:i:s', strtotime(get_post($order->get_id())->post_date)),
                    "{{shipping_method}}" => $order->get_shipping_method(),
                    "{{payment_method}}" => $order->get_payment_method_title(),
                    "{{total}}" => wc_format_decimal($order->get_total(), 2),
                    "{{billing_name}}"   => $order->get_formatted_billing_full_name(),
                    "{{billing_first_name}}" => $order->get_billing_first_name(),
                    "{{billing_last_name}}" =>  $order->get_billing_last_name(),
                    "{{billing_company}}" => $order->get_billing_company(),
                    "{{billing_address_1}}" => $order->get_billing_address_1(),
                    "{{billing_address_2}}" => $order->get_billing_address_2(),
                    "{{billing_city}}" => $order->get_billing_city(),
                    "{{billing_state}}" => $order->get_billing_state(),
                    "{{billing_postcode}}" => $order->get_billing_postcode(),
                    "{{billing_country}}" => $order->get_billing_country(),
                    "{{billing_email}}"    => $order->get_billing_email(),
                    "{{shipping_name}}" => $shipping_full_name,
                    "{{shipping_company}}" => $order->get_shipping_company(),
                    "{{shipping_address_1}}" => $order->get_shipping_address_1(),
                    "{{shipping_address_2}}" => $order->get_shipping_address_2(),
                    "{{shipping_city}}" => $order->get_shipping_city(),
                    "{{shipping_state}}" => $order->get_shipping_state(),
                    "{{shipping_postcode}}" => $order->get_shipping_postcode(),
                    "{{shipping_country}}" => $order->get_shipping_country(),
                    "{{download_permissions}}" => $order->is_download_permitted() ? $order->is_download_permitted() : 0,
                ];

                $message = str_replace(array_keys($details), array_values($details), apply_filters('emailkit_shortcode_filter', $html));

                $to       = $order->get_billing_email();
                $order_date = $order->get_date_created();
                $formatted_date = esc_attr($order_date->date('F j, Y'));
                $subject = "Note added to your order on " . $formatted_date . " on " . esc_attr(get_bloginfo('name'));
                $headers = [
                    'From: ' . $email . "\r\n",
                    'Reply-To: ' . $email . "\r\n",
                    'Content-Type: text/html; charset=UTF-8'
                ];

                wp_mail($to, $subject, $message, $headers);
            }
        }
    }
}

```
