Automattic\WooCommerce\Internal\StockNotifications
Notification::set_user_email
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() Notification::set user email code WC 10.3.6
public function set_user_email( string $user_email ) {
$this->set_prop( 'user_email', $user_email );
}