Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save lukasprelovsky/d7e0973bca641a0a640f56e3241f7271 to your computer and use it in GitHub Desktop.
Save lukasprelovsky/d7e0973bca641a0a640f56e3241f7271 to your computer and use it in GitHub Desktop.
add_filter( 'woocommerce_email_attachments', 'mbcreation_woocommerce_attachments', 10, 3 );
function mbcreation_woocommerce_attachments($attachments, $email_id, $email_object){
if( $email_id === 'customer_on_hold_order'){
$attachments[] = get_attached_file( 612 );
}
return $attachments;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment