Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // přidání dokumentů do emailu
- add_filter( 'woocommerce_email_attachments', 'attach_complaints_conditions_pdf_to_email', 10, 3);
- function attach_complaints_conditions_pdf_to_email ( $attachments, $status , $order ) {
- $allowed_statuses = array( 'new_order', 'customer_invoice', 'customer_processing_order', 'customer_completed_order' );
- if( isset( $status ) && in_array ( $status, $allowed_statuses ) ) {
- $dokument1 = get_template_directory() . '/oznameni-o-odstoupeni-od-smlouvy.pdf';
- $dokument2 = get_template_directory() . '/obchodni-podminky.pdf';
- $attachments = array($dokument1, $dokument2);
- }
- return $attachments;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement