Skip to content

Instantly share code, notes, and snippets.

@mujahidi
Created October 19, 2023 15:42
Show Gist options
  • Save mujahidi/4de0b119e323b85c7ecc180593b000f0 to your computer and use it in GitHub Desktop.
Save mujahidi/4de0b119e323b85c7ecc180593b000f0 to your computer and use it in GitHub Desktop.
Create Woocommerce custom email notification
<?php
$mailer = WC()->mailer();
$template = '/emails/customer-admin-order-status.php';
//format the email
$subject = 'Order Status Update';
$content = wc_get_template_html( $template, array(
'order' => $order,
'email_heading' => $subject,
'sent_to_admin' => false,
'plain_text' => false,
'email' => $mailer
) );
$headers = "Content-Type: text/html\r\n";
//send the email through wordpress
$mailer->send( $recipient, $subject, $content, $headers );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment