Attach PDF to confirmation email for specific product
-
I would like to attach a PDF to the confirmation email for product ID 11871. I found the following code. Will it work if I add in to functions.php in my Child theme for sending the attachment lederveiledning.pdf located in the root folder of my Child theme?
function attach_terms_conditions_pdf_to_email ( $attachments, $status , $order ) { $allowed_statuses = array( 'new_order', 'customer_invoice', 'customer_processing_order', 'customer_completed_order' ); if( isset( $status ) && in_array ( $status, $allowed_statuses ) ) { $attachment_products = array(11871) // id of product that will trigger email $send_email = false; $order_items = $order->get_items(); foreach ($order_items as $item) { // loop through order items if(in_array($item['product_id'], $attachment_products)) { // compare each product id with listed products ids $send_email = true; break; // one match is found ; exit loop } } if($send_email) { $your_pdf_path = get_stylesheet_directory() . '/lederveiledning.pdf'; $attachments[] = $your_pdf_path; } } return $attachments; }
Viewing 9 replies - 1 through 9 (of 9 total)
Viewing 9 replies - 1 through 9 (of 9 total)
- The topic ‘Attach PDF to confirmation email for specific product’ is closed to new replies.