Skip to content

Instantly share code, notes, and snippets.

@tankbar
Created March 30, 2017 12:58
Show Gist options
  • Save tankbar/42170007a5874b252b27af6de6a42622 to your computer and use it in GitHub Desktop.
Save tankbar/42170007a5874b252b27af6de6a42622 to your computer and use it in GitHub Desktop.
Add PDF to WooCommerce Order Email
<?php
add_filter( 'woocommerce_email_attachments', 'attach_terms_conditions_pdf_to_email', 10, 3);
function attach_terms_conditions_pdf_to_email ( $attachments , $id, $object ) {
$your_pdf_path = get_template_directory() . '/terms.pdf';
$attachments[] = $your_pdf_path;
return $attachments;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment