wpcf7_sendinblue_doi_default_optin_callback()
Default optin_callback function.
Хуков нет.
Возвращает
null
. Ничего (null).
Использование
wpcf7_sendinblue_doi_default_optin_callback( $properties );
- $properties (обязательный)
- -
Код wpcf7_sendinblue_doi_default_optin_callback() wpcf7 sendinblue doi default optin callback CF7 5.9.8
function wpcf7_sendinblue_doi_default_optin_callback( $properties ) { $service = WPCF7_Sendinblue::get_instance(); if ( ! $service->is_active() ) { return; } if ( ! empty( $properties['contact'] ) ) { $contact_id = $service->create_contact( $properties['contact'] ); if ( $contact_id and ! empty( $properties['email'] ) ) { $service->send_email( $properties['email'] ); } } }