WC_Log_Handler_Email::add_email( string $email )

Adds an email to the list of recipients.


Description Description


Parameters Parameters

$email

(Required) Email address to add.


Top ↑

Source Source

File: includes/log-handlers/class-wc-log-handler-email.php

	public function add_email( $email ) {
		array_push( $this->recipients, $email );
	}


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.