New user notification issue

In your email code you’re using mail PHP function, whereas WordPress uses its own internal wp_mail function that then sends the email using PhpMailer (for many different reasons) .. which should be using PHP’s mail fn but there’s a number of different things that could be causing problems. You can also install the “WP Mail … Read more

Cron not sending wp-mail()

You can test if mail has been sent or not using the following: // Set $to as the email you want to send the test to. $to = “[email protected]”; // Email subject and body text. $subject=”wp_mail function test”; $message=”This is a test of the wp_mail function: wp_mail is working.woo!”; $headers=””; // Load WP components, no … Read more

WP Mail plugin not sending the mail

Some issues is because php version of your server hosting not valid with your website. First, you must check what php version that your hosting used, check from WHM->server information (right menu). Now, back to your cpanel dashboard, seleck multiPHP manager, choose your site and select php version(right menu dropdown), choose with the same php … Read more

Send a email base on a taxonomy term

Have you tried using has_term()? if( get_post_type($post) === $post_type && has_term( ‘In progress’, ‘call_type’, $post ) ) wp_mail($emails, “New Item listed on Fit It List. Ref number $title”, $message);