我正在尝试在cronjob任务中使用wp_mail,但没有发送电子邮件。相反,纯PHP函数mail()可以工作。
问题1):为什么mail()有效但wp_mail没有?
问题2):调用www.domain.de/wp-cron.php手动触发电子邮件。但收到的电子邮件的html电子邮件正文仍然是一个字符串,并没有翻译成HTML。你知道为什么吗?
搜索解决方案,找到一些。根据这篇文章(Cron job in WordPress not working),我设置了这样的cronjob:
设置自定义间隔:
function example_add_cron_interval( $schedules ) {
$schedules['five_seconds'] = array(
'interval' => 5,
'display' => esc_html__( 'Every Five Seconds' ),
);
$schedules['daily'] = array(
'display' => esc_html__( 'Once Daily' )
);
return $schedules;
}
add_filter( 'cron_schedules', 'example_add_cron_interval', 999 );
激活cronjob:
function cron_activation() {
if( !wp_next_scheduled( 'dbs_cron_hook' ) ) {
wp_schedule_event(time(), 'daily', 'dbs_cron_hook' );
}
}
add_action('init', 'cron_activation');
做逻辑: function my_task_function(){
$max_hours = 336; // entspricht 2 Wochen
global $post;
$args = array( 'post_type' => 'bookings', );
$booking_listing = new WP_Query( $args );
$mail_body = '<table>';
if( $booking_listing->have_posts() ) :
while( $booking_listing->have_posts() ) : $booking_listing->the_post();
$post_id = get_the_ID();
$email_sent_timestamp = intval( get_post_meta( $post_id, 'approvement_email_sent', true ) );
$event_id = intval( get_post_meta( $post_id, 'event_id', true ) );
if( $email_sent_timestamp != 0 ){
$date = date_create();
$now_timestamp = date_timestamp_get($date);
$hoursPassed = diff_timestamp( $now_timestamp, $email_sent_timestamp );
var_dump($hoursPassed["full_hours"] >= $max_hours);
if( $hoursPassed >= $max_hours ){
update_post_meta( $event_id, 'event_reserved', intval(0) );
$mail_body .= '<tr><td>BuchungsNr ' . $post_id . ': 2 Wochen sind abgelaufen.</td></tr><tr><td>Der Termin ' . $event_id . ' wurde wieder aktiviert.</td></tr>';
}
}
endwhile;
else:
wp_send_json_error( "No events found" );
endif;
$mail_body .= '</table>';
var_dump($max_hours);
// wp_mail( 'xxxxx@xxxxxxx.xxx', 'Rervierung ' . $post_id . ' abgelaufen', $mail_body );
mail( 'xxxxx@xxxxxxx.xxx', 'Rervierung ' . $post_id . ' abgelaufen', $mail_body );
}
add_action( 'dbs_cron_hook', 'my_task_function' );
我在config.php中禁用了wp cron
define('DISABLE_WP_CRON', true);
在服务器上设置系统cronjob,如* */1 * * * /vrmd/webserver/php70/bin/php-cli /homepages/xxxxxx/wp-cron.php > /dev/null
希望你能帮帮我。
编辑问题2:在mail()函数中使用$ headers
$headers = "MIME-Version: 1.0\r\n";
$headers .= "Content-Type: text/html; charset=UTF-8\r\n";
mail( $to, $subject, $mail_body, $headers );
问题1仍在疑惑......