Skip to content
add_filter('wpcf7_mail_components', function ($components, $contact_form, $mail_tag_replacement) {
if (empty($components['body'])) return $components;
$hotel = '';
if (isset($_POST['hotel_alojamiento'])) {
$hotel = sanitize_text_field(wp_unslash($_POST['hotel_alojamiento']));
}
$body = $components['body'];
$remove_block = function($html, $start, $end) {
$pattern = sprintf('/%s.*?%s/s', preg_quote($start, '/'), preg_quote($end, '/'));
return preg_replace($pattern, '', $html);
};
if ($hotel === 'Hotel Los Sauces') {
$body = $remove_block($body, '', '');
} elseif ($hotel === 'Hotel Central Suites') {
$body = $remove_block($body, '', '');
} else {
$body = $remove_block($body, '', '');
$body = $remove_block($body, '', '');
}
$body = preg_replace("/\n{3,}/", "\n\n", $body);
$components['body'] = $body;
return $components;
}, 10, 3);