【问题标题】:WooCommerce - send custom email on custom order status changeWooCommerce - 发送有关自定义订单状态更改的自定义电子邮件
【发布时间】:2014-11-24 19:18:47
【问题描述】:

我添加了一个自定义状态wc-order-confirmed

// Register new status
function register_order_confirmed_order_status() {
    register_post_status( 'wc-order-confirmed', array(
        'label' => 'Potvrzení objednávky',
        'public' => true,
        'exclude_from_search' => false,
        'show_in_admin_all_list' => true,
        'show_in_admin_status_list' => true,
        'label_count' => _n_noop( 'Potvrzení objednávky <span class="count">(%s)</span>', 'Potvrzení objednávky <span class="count">(%s)</span>' )
    ) );
}
add_action( 'init', 'register_order_confirmed_order_status' );

// Add to list of WC Order statuses
function add_order_confirmed_to_order_statuses( $order_statuses ) {
    $new_order_statuses = array();
// add new order status after processing
    foreach ( $order_statuses as $key => $status ) {
        $new_order_statuses[ $key ] = $status;
        if ( 'wc-processing' === $key ) {
            $new_order_statuses['wc-order-confirmed'] = 'Potvrzení objednávky';
        }
    }
    return $new_order_statuses;
}
add_filter( 'wc_order_statuses', 'add_order_confirmed_to_order_statuses' );

我添加了一个自定义电子邮件wc_confirmed_order

/**
 * A custom confirmed Order WooCommerce Email class
 *
 * @since 0.1
 * @extends \WC_Email
 */
class WC_Confirmed_Order_Email extends WC_Email {


    /**
     * Set email defaults
     *
     * @since 0.1
     */
    public function __construct() {

        // set ID, this simply needs to be a unique name
        $this->id = 'wc_confirmed_order';

        // this is the title in WooCommerce Email settings
        $this->title = 'Potvrzení objednávky';

        // this is the description in WooCommerce email settings
        $this->description = 'Confirmed Order Notification';

        // these are the default heading and subject lines that can be overridden using the settings
        $this->heading = 'Potvrzení objednávky';
        $this->subject = 'Potvrzení objednávky';

        // these define the locations of the templates that this email should use, we'll just use the new order template since this email is similar
        $this->template_html  = 'emails/customer-confirmed-order.php';
        $this->template_plain = 'emails/plain/admin-new-order.php';

        // Trigger on confirmed orders
        add_action( 'woocommerce_order_status_pending_to_order_confirmed', array( $this, 'trigger' ) );
        add_action( 'woocommerce_order_status_processing_to_order_confirmed', array( $this, 'trigger' ) );

        // Call parent constructor to load any other defaults not explicity defined here
        parent::__construct();

        // this sets the recipient to the settings defined below in init_form_fields()
        $this->recipient = $this->get_option( 'recipient' );

        // if none was entered, just use the WP admin email as a fallback
        if ( ! $this->recipient )
            $this->recipient = get_option( 'admin_email' );
    }


    /**
     * Determine if the email should actually be sent and setup email merge variables
     *
     * @since 0.1
     * @param int $order_id
     */
    public function trigger( $order_id ) {
            // bail if no order ID is present
        if ( ! $order_id )
            return;

        if ( $order_id ) {
            $this->object       = wc_get_order( $order_id );
            $this->recipient    = $this->object->billing_email;

            $this->find['order-date']      = '{order_date}';
            $this->find['order-number']    = '{order_number}';

            $this->replace['order-date']   = date_i18n( wc_date_format(), strtotime( $this->object->order_date ) );
            $this->replace['order-number'] = $this->object->get_order_number();
        }


        if ( ! $this->is_enabled() || ! $this->get_recipient() )
            return;

        // woohoo, send the email!
        $this->send( $this->get_recipient(), $this->get_subject(), $this->get_content(), $this->get_headers(), $this->get_attachments() );
    }


    /**
     * get_content_html function.
     *
     * @since 0.1
     * @return string
     */
    public function get_content_html() {
        ob_start();
        wc_get_template( $this->template_html, array(
            'order'         => $this->object,
            'email_heading' => $this->get_heading()
        ) );
        return ob_get_clean();
    }


    /**
     * get_content_plain function.
     *
     * @since 0.1
     * @return string
     */
    public function get_content_plain() {
        ob_start();
        wc_get_template( $this->template_plain, array(
            'order'         => $this->object,
            'email_heading' => $this->get_heading()
        ) );
        return ob_get_clean();
    }


    /**
     * Initialize Settings Form Fields
     *
     * @since 2.0
     */
    public function init_form_fields() {

        $this->form_fields = array(
            'enabled'    => array(
                'title'   => 'Enable/Disable',
                'type'    => 'checkbox',
                'label'   => 'Enable this email notification',
                'default' => 'yes'
            ),
            'recipient'  => array(
                'title'       => 'Recipient(s)',
                'type'        => 'text',
                'description' => sprintf( 'Enter recipients (comma separated) for this email. Defaults to <code>%s</code>.', esc_attr( get_option( 'admin_email' ) ) ),
                'placeholder' => '',
                'default'     => ''
            ),
            'subject'    => array(
                'title'       => 'Subject',
                'type'        => 'text',
                'description' => sprintf( 'This controls the email subject line. Leave blank to use the default subject: <code>%s</code>.', $this->subject ),
                'placeholder' => '',
                'default'     => ''
            ),
            'heading'    => array(
                'title'       => 'Email Heading',
                'type'        => 'text',
                'description' => sprintf( __( 'This controls the main heading contained within the email notification. Leave blank to use the default heading: <code>%s</code>.' ), $this->heading ),
                'placeholder' => '',
                'default'     => ''
            ),
            'email_type' => array(
                'title'       => 'Email type',
                'type'        => 'select',
                'description' => 'Choose which format of email to send.',
                'default'     => 'html',
                'class'       => 'email_type',
                'options'     => array(
                    'plain'     => __( 'Plain text', 'woocommerce' ),
                    'html'      => __( 'HTML', 'woocommerce' ),
                    'multipart' => __( 'Multipart', 'woocommerce' ),
                )
            )
        );
    }


} // end \WC_confirmed_Order_Email class

我可以在电子邮件设置中看到电子邮件,并在订单状态下拉列表中看到状态。现在,每当订单状态更改为wc-order-confirmed 时,我都需要发送我的新电子邮件。过渡钩子似乎永远不会触发。

我也试过了:

/**
 * Register the "woocommerce_order_status_pending_to_quote" hook which is necessary to
 * allow automatic email notifications when the order is changed to refunded.
 *
 * @modified from http://stackoverflow.com/a/26413223/2078474 to remove anonymous function
 */
add_action( 'woocommerce_init', 'so_25353766_register_email' );
function so_25353766_register_email(){
    add_action( 'woocommerce_order_status_pending_to_order_confirmed', array( WC(), 'send_transactional_email' ), 10, 10 );
    add_action( 'woocommerce_order_status_processing_to_order_confirmed', array( WC(), 'send_transactional_email' ), 10, 10 );
}

这似乎根本不起作用...有什么想法吗?

【问题讨论】:

    标签: php wordpress woocommerce


    【解决方案1】:

    你需要的钩子是:

    woocommerce_order_status_changed

    add_action("woocommerce_order_status_changed", "my_awesome_publication_notification");
    
    function my_awesome_publication_notification($order_id, $checkout=null) {
       global $woocommerce;
       $order = new WC_Order( $order_id );
       if($order->status === 'completed' ) {
          // Create a mailer
          $mailer = $woocommerce->mailer();
    
          $message_body = __( 'Hello world!!!' );
    
          $message = $mailer->wrap_message(
            // Message head and message body.
            sprintf( __( 'Order %s received' ), $order->get_order_number() ), $message_body );
    
    
          // Cliente email, email subject and message.
         $mailer->send( $order->billing_email, sprintf( __( 'Order %s received' ), $order->get_order_number() ), $message );
         }
    
       }
    }
    

    【讨论】:

    • 最佳且简单的解决方案。谢谢
    • 钩子是正确的并且有效。即使订单状态刚刚创建为“暂停”,您也可以发送任何状态更改的邮件。 wc()->mailer 使用的是 php 邮件类,所以你甚至可以使用 wp_mail 函数来发送邮件和添加附件等。如果你知道如何使用 php 脚本发送邮件,使用起来非常简单。
    【解决方案2】:

    正如 Xcid 的回答所示,您需要注册电子邮件。

    在 WC 2.2+ 中,我相信您可以通过以下方式做到这一点:

    add_action( 'woocommerce_order_status_wc-order-confirmed', array( WC(), 'send_transactional_email' ), 10, 10 );
    

    我在 WooCommerce 2.3 中添加了一个过滤器,因此当它出现时,自定义电子邮件将能够添加到 WooCommerce 注册的电子邮件操作列表中:

    // As of WooCommerce 2.3
    function so_27112461_woocommerce_email_actions( $actions ){
        $actions[] = 'woocommerce_order_status_wc-order-confirmed';
        return $actions;
    }
    add_filter( 'woocommerce_email_actions', 'so_27112461_woocommerce_email_actions' );
    

    【讨论】:

      【解决方案3】:

      如您所见: https://github.com/woothemes/woocommerce/blob/f8a161c40673cb019eb96b04c04a774ca040a15a/includes/abstracts/abstract-wc-order.php#L2097 你可以使用这个钩子:

      do_action( 'woocommerce_order_status_' . $new_status, $this-&gt;id );

      你的自定义状态应该给:

      add_action( 'woocommerce_order_status_wc-order-confirmed' , array( $this, 'trigger' ) );

      我想您也可以将自定义电子邮件添加到邮件程序中,如果没有的话:

      只需添加:

      add_filter( 'woocommerce_email_classes', array($this,'edit_woocommerce_email_classes' ));
      function edit_woocommerce_email_classes( $email_classes ) {
          require_once( 'your-email-class.php' );
          $email_classes[ 'WC_Confirmed_Order_Email' ] = new WC_Confirmed_Order_Email();
          return $email_classes;
       }
      

      编辑:

      您需要先实例化 woocommerce 电子邮件,然后才能添加

      add_action( 'init' , 'initiate_woocommerce_email' );
      
      function initiate_woocommerce_email(){
         // Just when you update the order_status on backoffice
         if( isset($_POST['order_status']) ) {
              WC()->mailer();
          }
      }
      

      【讨论】:

      • 谢谢,这看起来很有希望!添加 WC()->mailer() 是什么意思?
      • WC()->mailer() 是一个内部 woocommerce 函数,用于实例化 woocommerce 电子邮件服务,换句话说,该函数将实例化您的自定义类。
      • 是的,我知道 WC()->mailer() 应该实例化我的课程,但我不知道该放在哪里?您的意思是将其添加到 woocommerce_order_status_wc-order-confirmed 操作中还是在哪里?
      • 您添加了自定义状态,何时更改状态?手动?在后台?
      【解决方案4】:

      您可以尝试查看订单状态何时发生变化,因此将其放入functions.php:

      function confirmed_notifications($order_id, $checkout=null) {
          global $woocommerce;
          $order = new WC_Order( $order_id );
      
          if( $order->status === 'order-confirmed' ) {
      
              // Trigger transactional email to client
              $email = $mailer->emails['WC_Confirmed_Order_Email'];
              $email->trigger( $order_id );
          }
      }
      add_action("woocommerce_order_status_changed", "confirmed_notifications");
      

      此功能将触发您的电子邮件并发送。

      【讨论】:

        猜你喜欢
        • 1970-01-01
        • 1970-01-01
        • 2021-01-24
        • 2018-07-14
        • 1970-01-01
        • 1970-01-01
        • 2016-03-03
        • 1970-01-01
        • 1970-01-01
        相关资源
        最近更新 更多