Advertisement
Konark

Untitled

Oct 6th, 2020
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. add_filter( 'woocommerce_email_attachments', 'attach_pdf_file_to_customer_completed_email', 10, 3);
  2. function attach_pdf_file_to_customer_completed_email( $attachments, $email_id, $order ) {
  3. if( $email_id === 'customer_processing_order' ){
  4. $attachments[] = generatePDF2( $order, get_current_user_id() );
  5. }
  6.  
  7. return $attachments;
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement