usces_filter_advance_ordermail / フィルターフック

サンキューメールの商品オプション情報の後に付加情報を追加

説明

サンキューメール(購入時の自動送信メール)に、商品付加情報を追加できます。

使い方

add_filter( 'usces_filter_advance_ordermail',  'my_filter_advance_ordermail', 10, 2 );
function my_filter_advance_ordermail( $msg_advance, $cart_row, $data ) {
    //処理
    return $msg_advance;
}

パラメータ

$msg_advance
(文字列)初期値はNULL
$cart_row
(配列)カート行データ
$data
(配列)受注データ

用例

ソースファイル

usc-e-shop/functions/function.php

関連資料

  • usces_send_ordermail()