Automattic\WooCommerce\Internal\StockNotifications

Notification::set_user_emailpublicWC 1.0

Set the user email.

Метод класса: Notification{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$Notification = new Notification();
$Notification->set_user_email( $user_email );
$user_email(строка) (обязательный)
User email.

Код Notification::set_user_email() WC 10.5.2

public function set_user_email( string $user_email ) {
	$this->set_prop( 'user_email', $user_email );
}