usces_filter_send_order_mail_others / フィルターフック

サンキューメールのその他の情報を変更

説明

サンキューメール(購入時の自動送信メール)の、その他の情報を変更できます。

使い方

add_filter( 'usces_filter_send_order_mail_others',  'my_filter_send_order_mail_others', 10, 2 );
function my_filter_send_order_mail_others( $msg_others, $data ) {
    //処理
    return $msg_others;
}

パラメータ

$msg_others
(文字列)「備考」を含むその他の情報
$data
(配列)受注データ

用例

ソースファイル

usc-e-shop/functions/function.php

関連資料

  • usces_send_ordermail()