Code-Snippets-Functions/Execute a function on a child site/WooCommerce/attach-file-pdf-order-emails.txt

10 lines
424 B
Text

add_filter( 'woocommerce_email_attachments', 'wc_attach_pdf_to_emails', 10, 4 );
function wc_attach_pdf_to_emails( $attachments, $email_id, $order, $email ) {
$email_ids = array( 'new_order', 'customer_processing_order' );
if ( in_array ( $email_id, $email_ids ) ) {
$upload_dir = wp_upload_dir();
$attachments[] = $upload_dir['basedir'] . "/2020/09/filename.pdf";
}
return $attachments;
}