WPCF7_Submission::before_send_mail
Function called just before sending email.
Метод класса: WPCF7_Submission{}
Хуки из метода
Возвращает
null. Ничего (null).
Использование
// private - только в коде основоного (родительского) класса $result = $this->before_send_mail();
Код WPCF7_Submission::before_send_mail() WPCF7 Submission::before send mail CF7 6.1.5
private function before_send_mail() {
$abort = false;
do_action_ref_array( 'wpcf7_before_send_mail', array(
$this->contact_form,
&$abort,
$this,
) );
return ! $abort;
}