usces_filter_option_ordermail / フィルターフック

サンキューメールの商品オプション情報の内容を変更

説明

サンキューメール(購入時の自動送信メール)の、商品オプション情報の内容を変更できます。

使い方

add_filter( 'usces_filter_option_ordermail',  'my_filter_option_ordermail', 10, 3 );
function my_filter_option_ordermail( $optstr, $options, $cart_row ) {
    //処理
    return $optstr;
}

パラメータ

$optstr
(文字列)商品オプション
$options
(配列)商品オプションデータ
$cart_row
(配列)カート行データ

用例

ソースファイル

usc-e-shop/functions/function.php

関連資料

  • usces_send_ordermail()