PATH:
home
/
letacommog
/
laindinois
/
wp-content
/
plugins
/
woocommerce-pdf-vouchers
/
includes
/
templates
/
emails
<?php if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly /** * Vendor Sale Notification * * Type : HTML * * $site_name : displays the site name * $product_title : displays the product title * $voucher_code : displays the voucher code * $product_price : displays the product price * $order_id : displays the order id * $product_quantity : displays the product quantity * $voucher_link : displays the voucher link * $customer_name : displays the customer name * $shipping_address : displays the shipping address * $shipping_postcode : displays the shipping postcode * $shipping_city : displays the shipping city * $recipient_name : displays the recipient name * $recipient_email : displays the recipient email * $order_date : displays the order date * $vou_exp_date : displays the voucher expiry date * $vendor_first_name : displays the vendor first name * $vendor_last_name : displays the vendor last name * * * @package WooCommerce - PDF Vouchers * @since 2.3.4 */ ?> <?php do_action( 'woocommerce_email_header', $email_heading ); ?> <p><?php esc_html_e( 'Hello,', 'woovoucher' ); ?></p> <p><?php echo sprintf( esc_html__( 'A new sale on %s', 'woovoucher' ), $site_name );?></p> <p><?php echo sprintf( esc_html__( 'Product Title: %s', 'woovoucher' ), $product_title );?></p> <p><?php echo sprintf( esc_html__( 'Voucher Code: %s', 'woovoucher' ), $voucher_code );?></p> <p><?php esc_html_e( 'Thank you', 'woovoucher' );?></p> <?php do_action( 'woocommerce_email_footer' ); ?>
[+]
..
[-] vou-redeem-notification.php
[edit]
[-] gift-notification.php
[edit]
[-] vendor-sales.php
[edit]
[+]
plain