Forked from jessepearson/jp_add_ics_to_woocommerce_emails.php
Created
June 13, 2024 04:18
-
-
Save ghhv/bfe8e7b63c59732af75c982bff9e560d to your computer and use it in GitHub Desktop.
This function/filter will add ics files from bookings created with WooCommerce Bookings to the Processing and Completed emails sent from WooCommerce itself.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php // do not copy this line | |
/** | |
* This function/filter will add ics files from bookings created with WooCommerce Bookings to | |
* the Processing and Completed emails sent from WooCommerce itself. | |
* @param arr $attachments Current array of attachments being filtered. | |
* @param str $email_id The id of the email being sent. | |
* @param obj $order The order for which the email is being sent. | |
* @return arr The filtered list of attachments. | |
*/ | |
function jp_add_ics_to_woocommerce_emails( $attachments, $email_id, $order ) { | |
// The woocommerce email ids for which you want to attach the ics files. | |
$available = array( | |
'customer_processing_order', | |
'customer_completed_order', | |
); | |
// Check to make sure we have a match. | |
if ( in_array( $email_id, $available ) ) { | |
// Get the booking ids from the order, and get the exporter object. | |
$booking_ids = WC_Booking_Data_Store::get_booking_ids_from_order_id( $order->get_id() ); | |
$generate = new WC_Bookings_ICS_Exporter; | |
// Go through each id and add the attachments. | |
foreach ( $booking_ids as $booking_id ) { | |
$booking = get_wc_booking( $booking_id ); | |
$attachments[] = $generate->get_booking_ics( $booking ); | |
// If the object is not unset, then the New Booking Email is sent twice. | |
unset( $booking ); | |
} | |
} | |
return $attachments; | |
} | |
add_filter( 'woocommerce_email_attachments', 'jp_add_ics_to_woocommerce_emails', 10, 3 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment