Automattic\WooCommerce\Internal\StockNotifications\Emails
EmailManager::send_verified_email
Send the sign-up confirmation email for a stock notification.
Method of the class: EmailManager{}
No Hooks.
Returns
null. Nothing (null).
Usage
$EmailManager = new EmailManager(); $EmailManager->send_verified_email( $notification );
- $notification(Notification) (required)
- The notification object.
EmailManager::send_verified_email() EmailManager::send verified email code WC 10.9.4
public function send_verified_email( Notification $notification ) {
$emails = WC()->mailer()->get_emails();
$email = $emails['WC_Email_Customer_Stock_Notification_Verified'] ?? null;
if ( $email instanceof CustomerStockNotificationVerifiedEmail ) {
$email->trigger( $notification );
}
}