CF7自动回复(mail2)延迟发送

时间:2017-05-13 15:09:51

标签: php wordpress contact-form-7

上下文 在提交初始表格后,我试图延迟以联系表格7发送自动回复(mail2)8小时。我在想这样的事情:

add_action("wpcf7_before_send_mail", "wpcf7_do_something_else");  function wpcf7_do_something_else($cf7) {
// get the contact form object
$wpcf = WPCF7_ContactForm::get_current();

// if you wanna check the ID of the Form $wpcf->id

if (/*Perform check here*/) {
    // If you want to skip mailing the data, you can do it...  
    $wpcf->skip_mail = true;    
}

return $wpcf; }

问题 不确定要使用哪种过滤器/挂钩。

0 个答案:

没有答案