Automattic\WooCommerce\Internal\StockNotifications

Notification::set_user_emailpublicWC 1.0

Set the user email.

Method of the class: Notification{}

No Hooks.

Returns

null. Nothing (null).

Usage

$Notification = new Notification();
$Notification->set_user_email( $user_email );
$user_email(string) (required)
User email.

Notification::set_user_email() code WC 10.3.6

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