steven_barragan0
Forum Replies Created
-
In order to send the message, I had to check what the plugin was doing and I had to copy what all what it does to send the test messaje and my code now looks like this.
` global $wpms_options, $phpmailer;
if (!is_object($phpmailer) || !is_a($phpmailer, ‘PHPMailer’)) {
require_once ABSPATH . WPINC . ‘/class-phpmailer.php’;
require_once ABSPATH . WPINC . ‘/class-smtp.php’;
$phpmailer = new PHPMailer();
}$to = ‘[email protected]’;
$subject = $_POST[‘subject’];
$message = “Telefono: $_POST[phone]\r\n$_POST[mail]”;
$headers = “From: $_POST[name] <$_POST[email]>” . “\r\n”;$data[‘messaje’] = wp_mail($to, $subject, $message, $headers);
$data[‘success’] = true;`I hope it would be usefull to someone whit the same problem than me.
Mee too…
Fatal error: Cannot redeclare get_column_headers() (previously declared in /var/www/php/tmc/public/wp-content/plugins/custom-taxonomies/backwards_compatibility.php:49) in /var/www/php/tmc/public/wp-admin/includes/screen.php on line 27 Call Stack: 0.0009 940872 1. {main}() /var/www/php/tmc/public/wp-admin/plugins.php:0 0.0012 1058552 2. require_once(‘/var/www/php/tmc/public/wp-admin/admin.php’) /var/www/php/tmc/public/wp-admin/plugins.php:10 0.2428 28642760 3. require_once(‘/var/www/php/tmc/public/wp-admin/includes/admin.php’) /var/www/php/tmc/public/wp-admin/admin.php:64
Forum: Plugins
In reply to: [Search Unleashed] [Plugin: Search Unleashed] download is broken / emptyI have the same trouble =(