usces_filter_send_order_mail_header_thankyou / フィルターフック

サンキューメールのヘッダーを書き換える

説明

サンキューメール(購入時の自動送信メール)の、ヘッダーを書き換えます。

使い方

add_filter( 'usces_filter_send_order_mail_header_thankyou',  'my_filter_send_order_mail_header_thankyou', 10, 2 );
function my_filter_send_order_mail_header_thankyou( $header, $data ) {
    //処理
    return $header;
}

パラメータ

$header
(文字列)サンキューメールヘッダー
$data
(配列)受注データ

用例

ソースファイル

usc-e-shop/functions/function.php

関連資料

  • usces_send_ordermail()