woocommerce_mail()WC 1.0

Deprecated from version 3.0. It is no longer supported and can be removed in future releases. It is recommended to replace this function with the same one.

No Hooks.

Return

null. Nothing (null).

Usage

woocommerce_mail( $to, $subject, $message, $headers, $attachments );
$to (required)
-
$subject (required)
-
$message (required)
-
$headers **
-
Default: "Content-Type: text/html\r\n"
$attachments **
-
Default: ""

Changelog

Deprecated since 3.0

woocommerce_mail() code WC 8.6.1

function woocommerce_mail( $to, $subject, $message, $headers = "Content-Type: text/html\r\n", $attachments = "" ) {
	wc_deprecated_function( __FUNCTION__, '3.0', 'wc_mail' );
	wc_mail( $to, $subject, $message, $headers, $attachments );
}