[WORDPRESS] 고객에게 WooCommerce 구독 취소 이메일
WORDPRESS고객에게 WooCommerce 구독 취소 이메일
해결법
-
1.수리를 공유해 주셔서 감사합니다. 구독 취소 확인을 통해 고객에게 이메일을 보내는 것과 같은 목표를 가지고있었습니다.
수리를 공유해 주셔서 감사합니다. 구독 취소 확인을 통해 고객에게 이메일을 보내는 것과 같은 목표를 가지고있었습니다.
나는 당신의 솔루션에 대한 몇 가지 업데이트를했고 다음과 같이 끝났습니다.
/* Send email to a customer on cancelled subscription in WooCommerce */ add_action( 'woocommerce_subscription_status_pending-cancel', 'sendCustomerCancellationEmail' );
/** * @param WC_Subscription $subscription */ function sendCustomerCancellationEmail( $subscription ) { $customer_email = $subscription->get_billing_email(); $wc_emails = WC()->mailer()->get_emails(); $wc_emails['WCS_Email_Cancelled_Subscription']->recipient = $customer_email; $wc_emails['WCS_Email_Cancelled_Subscription']->trigger( $subscription ); }
from https://stackoverflow.com/questions/57317710/woocommerce-subscription-cancellation-email-to-customer by cc-by-sa and MIT license
'WORDPRESS' 카테고리의 다른 글
[WORDPRESS] 고객이 제품 가격을 설정하고 WooCommerce에서 특정 유효성 검사가있는 장바구니에 추가 할 수있게하십시오. (0) | 2020.11.24 |
---|---|
[WORDPRESS] PHP7.1 치명적인 오류 : [] 연산자는 문자열에 지원되지 않음 [중복] (0) | 2020.11.24 |
[WORDPRESS] WooCommerce의 시간 제한을 통해 고객 당 주문 수를 제한하는 방법 (0) | 2020.11.24 |
[WORDPRESS] WP_LIST_PAGES ($ args)를 포장하는 방법; DIV 및 UL 요소가 있습니까? (0) | 2020.11.24 |
[WORDPRESS] WordPress 테마의 옵션 트리가있는 모든 활판 인쇄 옵션을 추가하는 방법은 무엇입니까? (0) | 2020.11.24 |