"; print_r($wp_error); echo ""; }, 10, 1 ); } $msg = array(); // TODO check for mailer if(!get_option('gosmtp_options')){ $msg['error'] = _('You have not configured SMTP settings yet !'); }else{ $result = wp_mail($to, $subject, $body); if(!$result){ $msg['error'] = __('Unable to send mail !').(empty($phpmailer->ErrorInfo) ? '' : ' '.__('Error : ').$phpmailer->ErrorInfo); }else{ $msg['response'] = __('Message sent successfully !'); } } gosmtp_json_output($msg); }