PluginProbe
EmailKit – Email Customizer for WooCommerce & WP / 1.6.2
EmailKit – Email Customizer for WooCommerce & WP v1.6.2
1.6.9 1.6.8 1.6.7 trunk 1.0.0 1.2.0 1.4.0 1.4.5 1.5.0 1.5.1 1.5.2 1.5.3 1.5.4 1.5.5 1.5.6 1.5.7 1.5.8 1.5.9 1.6.0 1.6.1 1.6.2 1.6.3 1.6.4 1.6.5 1.6.6
emailkit / includes / Admin / Emails / Woocommerce / InvoiceOrder.php

InvoiceOrder.php in EmailKit – Email Customizer for WooCommerce & WP 1.6.2, at includes/Admin/Emails/Woocommerce/InvoiceOrder.php

151 lines 5.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace EmailKit\Admin\Emails\Woocommerce;
4
5 use WP_Query;
6 use EmailKit\Admin\Emails\EmailLists;
7 use EmailKit\Admin\Emails\Helpers\Utils;
8
9 defined("ABSPATH") || exit;
10
11 class InvoiceOrder
12 {
13
14 private $db_query_class = null;
15
16 public function __construct()
17 {
18
19 $args = array(
20 'post_type' => 'emailkit',
21 'meta_query' => array(
22 array(
23 'key' => 'emailkit_template_type',
24 'value' => EmailLists::CUSTOMER_INVOICE_OR_ORDER_DETAILS,
25 ),
26 array(
27 'key' => 'emailkit_template_status',
28 'value' => 'Active',
29 ),
30 ),
31 );
32
33
34 $this->db_query_class = new WP_Query($args);
35
36 if (isset($this->db_query_class->posts[0])) {
37 add_action('woocommerce_email', [$this, 'remove_woocommerce_emails']);
38 }
39
40 add_filter('woocommerce_email_recipient_customer_invoice', [$this, 'invoiceEmail'], 10, 2);
41 }
42
43 public function remove_woocommerce_emails($email_class)
44 {
45
46 remove_action('woocommerce_email_recipient_customer_invoice', array($email_class->emails['WC_Email_Customer_Invoice'], 'trigger'));
47 }
48
49 public function invoiceEmail($order_id, $order)
50 {
51
52 $query = $this->db_query_class;
53 $email = get_option('admin_email');
54 if (isset($query->posts[0])) {
55 $html = get_post_meta($query->posts[0]->ID, 'emailkit_template_content_html', true);
56
57 $replacements = [];
58 foreach ($order->get_items() as $item_id => $item) {
59 $product = $item->get_product();
60 $id = $item['product_id'];
61 $product_name = $item['name'];
62 $item_qty = $item['quantity'];
63 $item_total = $item['total'];
64 $product_price = $product->get_price() * $item_qty;
65
66
67 // Format the product price with the currency symbol
68 $formatted_product_price = wc_price($product_price);
69
70 // Format the item total with the currency symbol
71 $formatted_item_total = wc_price($item_total);
72
73 $product_image_id = $product->get_image_id();
74 $product_image_url = $product_image_id ? wp_get_attachment_url($product_image_id) : wc_placeholder_img_src();
75
76 $product_sku = $product->get_sku();
77 $attributes = [];
78 $meta_data = $item->get_meta_data();
79
80 foreach ($meta_data as $meta) {
81 // Check for product attribute (pa_ is the prefix for standard attributes)
82 if (strpos($meta->key, 'pa_') === 0) {
83 // Standard product attribute
84 $formatted_name = ucwords(wc_attribute_label(str_replace('pa_', '', $meta->key), $product));
85 $formatted_value = is_string($meta->value) ? ucwords(strtolower($meta->value)) : ''; // Capitalize the value
86
87 // Add the attribute to the list with HTML markup
88 $attributes[] = esc_html($formatted_name) . ': ' . esc_html($formatted_value);
89
90 } else {
91
92 $formatted_name = is_string($meta->key) ? ucwords(str_replace('_', ' ', strtolower($meta->key))) : '';
93 $formatted_value = is_string($meta->value) ? ucwords(strtolower($meta->value)) : '';
94
95 // Add the custom meta to the list with HTML markup
96 $attributes[] = esc_html($formatted_name) . ':' . esc_html($formatted_value);
97
98 }
99 }
100
101 $formatted_attributes = !empty($attributes) ? implode(', ', $attributes) : '';
102
103
104 $replacements[] = [$product_name, $item_qty, $formatted_item_total, $formatted_product_price, $product_image_url, $product_sku, $formatted_attributes];
105
106 }
107
108 $html = \EmailKit\Admin\Emails\Helpers\Utils::order_items_replace($html, $replacements);
109
110
111 // Order details array for email
112 $details = Utils::woocommerce_order_email_contents($order);
113
114 $details ["{{order_id}}"] = $order_id;
115
116 $message = str_replace(array_keys($details), array_values($details), apply_filters('emailkit_shortcode_filter', $html));
117
118 $currency_symbol_position = get_option('woocommerce_currency_pos');
119
120 if($currency_symbol_position == 'left') {
121
122 $message = Utils::adjust_price_structure($message);
123
124 } else if($currency_symbol_position == 'left_space') {
125
126 $message = Utils::adjust_left_space_price_structure($message);
127
128 }
129
130 $to = $order->get_billing_email();
131
132 $pre_header_template = get_post_meta($query->posts[0]->ID, 'emailkit_email_preheader', true);
133 $pre_header = str_replace(array_keys(Utils::transform_details_keys($details)), array_values(Utils::transform_details_keys($details)), $pre_header_template);
134 $pre_header = !empty($pre_header) ? $pre_header : esc_html__("product details", "emailkit");
135 $subject_template = get_post_meta($query->posts[0]->ID, 'emailkit_email_subject', true);
136 $subject = str_replace(array_keys(Utils::transform_details_keys($details)), array_values(Utils::transform_details_keys($details)), $subject_template);
137 $subject = !empty($subject) ? $subject . ' - ' . $pre_header : esc_attr($order->get_billing_first_name() . " " . $order->get_billing_last_name()) . ", " ." ".esc_html__("Here is your product invoice", "emailkit") . ' - ' . $pre_header;
138
139
140
141
142 $headers = [
143 'From: ' . $email . "\r\n",
144 'Reply-To: ' . $email . "\r\n",
145 'Content-Type: text/html; charset=UTF-8',
146 ];
147
148 wp_mail($to, $subject, $message, $headers);
149 }
150 }
151 }