在Woocommerce Checkout上添加送货电子邮件并发送电子邮件通知

时间:2016-08-06 16:14:34

标签: php wordpress email woocommerce hook-woocommerce

我想在发货区域的woocommerce结帐页面上添加额外的电子邮件,并将订单副本发送到该电子邮件,是否可以这样做?

试图戒掉很长时间来解决这个问题,却找不到解决办法。希望有人可以帮助我

1 个答案:

答案 0 :(得分:2)

啊,是的,我忘了我发布了那个。这是完整的,更新的插件。较新版本的WooCommerce要求电子邮件收件人是逗号分隔的弹簧。我的插件的旧版本返回了一个数组,WooCommerce无法处理。

<?php
/*
Plugin Name: WooCommerce Shipping Email
Plugin URI: https://gist.github.com/helgatheviking/d2975aa4d190a5b55922#
Description: Add a shipping email field to checkout and notify of new orders
Version: 1.0.1
Author: Kathy Darling
Author URI: http://kathyisawesome.com
Requires at least: 4.0
Tested up to: 4.0

Copyright: © 2014 Kathy Darling.
License: GNU General Public License v3.0
License URI: http://www.gnu.org/licenses/gpl-3.0.html

*/


/**
 * The Main WC_Shipping_Email class
 **/
if ( ! class_exists( 'WC_Shipping_Email' ) ) :

class WC_Shipping_Email {

    /**
     * @var WC_Shipping_Email - the single instance of the class
     * @since 1.0
     */
    protected static $_instance = null;           

    /**
     * Main WC_Shipping_Email Instance
     *
     * Ensures only one instance of WC_Shipping_Email is loaded or can be loaded.
     *
     * @static
     * @see WC_Shipping_Email()
     * @return WC_Shipping_Email - Main instance
     * @since 1.0
     */
    public static function instance() {
        if ( is_null( self::$_instance ) ) {
            self::$_instance = new self();
        }
        return self::$_instance;
    }

    /**
     * Cloning is forbidden.
     *
     * @since 1.0
     */
    public function __clone() {
        _doing_it_wrong( __FUNCTION__, __( 'Cheatin&#8217; huh?', 'woocommerce-mix-and-match' ), '2.0' );
    }

    /**
     * Unserializing instances of this class is forbidden.
     *
     * @since 1.0
     */
    public function __wakeup() {
        _doing_it_wrong( __FUNCTION__, __( 'Cheatin&#8217; huh?', 'mix-and-match' ), '2.0' );
    }

    /**
     * WC_Shipping_Email Constructor
     *
     * @access public
     * @return WC_Shipping_Email
     * @since 1.0
     */

    public function __construct() { 

        $this->id = 'email';
        $this->meta = '_shipping_email';
        $this->label = __( 'Shipping Email', 'woocommerce-shipping-email' );

        // add email field to checkout
        add_filter( 'woocommerce_shipping_fields' , array( $this, 'add_shipping_fields' ) );
        add_filter( 'woocommerce_admin_shipping_fields' , array( $this, 'admin_shipping_fields' ) );

        // add recipient to specific emails
        add_filter( 'woocommerce_email_recipient_customer_processing_order' , array( $this, 'add_recipient' ), 20, 2 );
        add_filter( 'woocommerce_email_recipient_customer_completed_order' , array( $this, 'add_recipient' ), 20, 2 );
        add_filter( 'woocommerce_email_recipient_customer_note' , array( $this, 'add_recipient' ), 20, 2 );

        // display meta key in order overview
        add_action( 'woocommerce_order_details_after_customer_details' , array( $this, 'after_customer_details' ) );

        // display meta key in email
        add_action( 'woocommerce_before_template_part' , array( $this, 'before_email_addresses' ), 10, 4 );

    }


    /*-----------------------------------------------------------------------------------*/
    /* Plugin Functions */
    /*-----------------------------------------------------------------------------------*/

    /**
     * Add email to front-end shipping fields
     *
     * @var  array $fields
     * @return  array
     * @since 1.0
     */

    function add_shipping_fields( $fields ) {
        $fields['shipping_' . $this->id] = array(
            'label'         => $this->label,
            'required'      => true,
            'class'         => array( 'form-row-first' ),
            'validate'      => array( 'email' ),
        );
        return $fields;
    }

    /**
     * Add email to Admin Order overview
     *
     * @var  array $fields
     * @return  array
     * @since 1.0
     */

    function admin_shipping_fields( $fields ) {
        $fields[$this->id] = array(
            'label'         => $this->label
        );
        return $fields;
    }

    /**
     * Add recipient to emails
     *
     * @var  string $email
     * @return  string
     * @since 1.0
     */
    function add_recipient( $email, $order ) {
        $additional_email = get_post_meta( $order->id, $this->meta, true );

        if( $additional_email && is_email( $additional_email )){
            if( is_array( $email ) ){
                $email = explode( ',', $email );
                array_push( $email, $additional_email );
                $email = implode( ',', $email );
            } elseif( is_string( $email ) ){
                $email .= "," . $additional_email;
            }
        }

        return $email;
    }

    /**
     * Display meta in my-account area Order overview
     *
     * @var  object $order
     * @return  null
     * @since 1.0
     */

    public function after_customer_details( $order ){

        $value = get_post_meta( $order->id, $this->meta, true );

        if( $value ){
            echo '<dt>' . $this->label . ':</dt><dd>' . $value . '</dd>';
        }

    }

    /**
     * Display meta in my-account area Order overview
     *
     * @var  array $fields
     * @return  array
     * @since 1.0
     */

    public function before_email_addresses( $template_name, $template_path, $located, $args ){

        if( $template_name == 'emails/email-addresses.php' && isset( $args['order' ] ) && ( $value = get_post_meta( $args['order']->id, $this->meta, true ) ) ){ 

            if ( isset( $args['plain_text'] ) && $args['plain_text'] ){

                echo $this->label . ': ' . $value . "\n";

            } else {

                echo '<p><strong>' . $this->label . ':</strong> ' . $value . '</p>';

            }

        }

    }



} //end class: do not remove or there will be no more guacamole for you

endif; // end class_exists check


/**
 * Returns the main instance of WC_Shipping_Email to prevent the need to use globals.
 *
 * @since  2.0
 * @return WooCommerce
 */
function WC_Shipping_Email() {
  return WC_Shipping_Email::instance();
}

// Launch the whole plugin
WC_Shipping_Email();

注意:这只会发送给customer_processing_order,customer_completed_order和customer_note电子邮件的送货电子邮件。