Perhpaps公司wp_mail
是这种情况下的合适过滤器,因为它是第一个点火的过滤器wp_mail()
. 所以也许像这样简单的事情可能会奏效,
// For reference:
// $atts = array(
// \'to\' => string,
// \'subject\' => string,
// \'message\' => string,
// \'headers\' => string or array (I think),
// \'attachments\' => array,
// );
function filter_wp_mail( $atts ) {
if ( false === strpos( \'@domain.com\', $atts[\'to\'] ) ) {
$atts[\'headers\'] .= "Postmark: not valid email\\n";
}
return $atts;
}
add_filter( \'wp_mail\', \'filter_wp_mail\' );