borkolivic

Send attachment with completed order email

Dec 21st, 2020 (edited)
323
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.40 KB | None | 0 0
  1. /**
  2.  * https://media-x.hr/snippets/slanje-uvjeta-koristenja-u-mailu-zavrsena-narudzba/
  3.  */
  4. add_filter( 'woocommerce_email_attachments', 'mx_woocommerce_attachments', 10, 3 );
  5.  
  6.  
  7. function mx_woocommerce_attachments($attachments, $email_id, $email_object){
  8.  
  9.     if( $email_id === 'customer_completed_order'){
  10.  
  11.         $attachments[] = get_attached_file(123);
  12.  
  13.     }
  14.     return $attachments;
  15. }
Add Comment
Please, Sign In to add comment