WordPress :: Divi Builder :: Contact Module :: Customize Email Subject
<?php
/* DON'T copy the first line (above) if your functions.php already has it.
* ---------------------------------------------------------------------- */
function et_get_safe_localization( $string ) {
if ( false !== strpos( $string, 'New Message From ' ) ) {
return 'YOUR CUSTOM EMAIL SUBJECT';
}
return wp_kses( $string, et_get_allowed_localization_html_elements() );
}