Steps for debugging Contact failure
My ClassiPress theme is mostly functional, but where it isn't functional is one of the most important places, in the contact message to the seller! This is the Contact tab on the right side of ad listing pages. Other e-mail functions are working and only seemed to begin working after I installed the
WP-Mail-SMTP plugin.
I found this text in the emails.php file:
PHP Code:
$email = array( 'to' => $mailto, 'subject' => $subject, 'message' => $message, 'from' => $from_email, 'from_name' => $from_name );
$email = apply_filters( 'cp_email_user_ad_contact', $email, $post_id );
APP_Mail_From::apply_once( array( 'email' => $email['from'], 'name' => $email['from_name'], 'reply' => true ) );
wp_mail( $email['to'], $email['subject'], $email['message'] );
My question is this: Does the wp_mail() function in emails.php use the SMTP functionality I have added? And I think the answer to the will help to inform the answer to my bigger question: Where and how does one begin the debugging process for a Contact mechanism failure such as this?
This is the page on my site I am using to test (AppThemes.com is blocking my efforts; remove space from "h ttp"):
h ttp://motopart411.com/ads/1987-ninja-250-clip-on-handle-bars/#priceblock2
Thanks in advance for any help you can offer.