wp_mail not working
-
When I try to send email using wp_mail in php file I get following message:
See screenshot
I have configured WP Mail SMTP for gmail and when I send test mail it works, but when I send wp_mail email I get that error.I use simple php script just to test is it working:
<php
$to=”[email protected]”;
$subject=”Test”;
$body=”This is test mail”;
wp_mail( $to, $subject, $body, $headers );
?>
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
The topic ‘wp_mail not working’ is closed to new replies.