Check to check if wp_mail is working properly?
WordPress relies on the PHPMailer class to send email through PHP’s mail function. Since PHP’s mail function returns very little information after execution (only TRUE or FALSE), I suggest temporarily stripping down your mv_optin_mail function to a minimum in order to see if the wp_mail functions works. Example: $mailResult = false; $mailResult = wp_mail( ‘[email protected]’, … Read more