Skip to content

Instantly share code, notes, and snippets.

@LaxusCroco
Last active May 6, 2024 08:54
Show Gist options
  • Save LaxusCroco/57c38ba38d62a71023c36f5c48c364d5 to your computer and use it in GitHub Desktop.
Save LaxusCroco/57c38ba38d62a71023c36f5c48c364d5 to your computer and use it in GitHub Desktop.
<?php
add_filter(
'jet-form-builder/send-email/message_content',
function ( string $content ) {
return str_replace(
'%client_ip%',
\Jet_Form_Builder\Classes\Http\Http_Tools::get_ip_address(),
$content
);
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment