mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-30 11:42:22 +08:00
10 lines
424 B
Text
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;
|
|
}
|