{"id":5263,"date":"2025-02-28T03:40:36","date_gmt":"2025-02-28T11:40:36","guid":{"rendered":"https:\/\/eliasik-law.com\/correo-electronico\/"},"modified":"2025-08-21T07:54:03","modified_gmt":"2025-08-21T14:54:03","slug":"correo-electronico","status":"publish","type":"page","link":"https:\/\/eliasik-law.com\/es\/correo-electronico\/","title":{"rendered":"Correo electr\u00f3nico"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"5263\" class=\"elementor elementor-5263 elementor-3671\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-4da8e34 e-flex e-con-boxed e-con e-parent\" data-id=\"4da8e34\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-1e76d36 elementor-widget elementor-widget-heading\" data-id=\"1e76d36\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Correo electr\u00f3nico<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-a1c154b e-con-full e-flex e-con e-child\" data-id=\"a1c154b\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b9f75b2 uael-gf-style-underline JE-innerPage-contactform JE-innerPage-contactform-email uael-gf-button-center uael-gf-check-yes uael-gf-ajax-true uael-gf-input-size-sm uael-gf-enable-classes-no uael-gf-check-default-no uael-gf-btn-size-sm elementor-widget elementor-widget-uael-gf-styler\" data-id=\"b9f75b2\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"uael-gf-styler.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"uael-gf-style uael-gf-check-style elementor-clickable\">\n\t<script>\n\/\/----------------------------------------------------------\n\/\/------ JAVASCRIPT HOOK FUNCTIONS FOR GRAVITY FORMS -------\n\/\/----------------------------------------------------------\n\nif ( ! gform ) {\n\tdocument.addEventListener( 'gform_main_scripts_loaded', function() { gform.scriptsLoaded = true; } );\n\tdocument.addEventListener( 'gform\/theme\/scripts_loaded', function() { gform.themeScriptsLoaded = true; } );\n\twindow.addEventListener( 'DOMContentLoaded', function() { gform.domLoaded = true; } );\n\n\tvar gform = {\n\t\tdomLoaded: false,\n\t\tscriptsLoaded: false,\n\t\tthemeScriptsLoaded: false,\n\t\tisFormEditor: () => typeof InitializeEditor === 'function',\n\n\t\t\/**\n\t\t * @deprecated 2.9 the use of initializeOnLoaded in the form editor context is deprecated.\n\t\t * @remove-in 4.0 this function will not check for gform.isFormEditor().\n\t\t *\/\n\t\tcallIfLoaded: function ( fn ) {\n\t\t\tif ( gform.domLoaded && gform.scriptsLoaded && ( gform.themeScriptsLoaded || gform.isFormEditor() ) ) {\n\t\t\t\tif ( gform.isFormEditor() ) {\n\t\t\t\t\tconsole.warn( 'The use of gform.initializeOnLoaded() is deprecated in the form editor context and will be removed in Gravity Forms 3.1.' );\n\t\t\t\t}\n\t\t\t\tfn();\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\treturn false;\n\t\t},\n\n\t\t\/**\n\t\t * Call a function when all scripts are loaded\n\t\t *\n\t\t * @param function fn the callback function to call when all scripts are loaded\n\t\t *\n\t\t * @returns void\n\t\t *\/\n\t\tinitializeOnLoaded: function( fn ) {\n\t\t\tif ( ! gform.callIfLoaded( fn ) ) {\n\t\t\t\tdocument.addEventListener( 'gform_main_scripts_loaded', () => { gform.scriptsLoaded = true; gform.callIfLoaded( fn ); } );\n\t\t\t\tdocument.addEventListener( 'gform\/theme\/scripts_loaded', () => { gform.themeScriptsLoaded = true; gform.callIfLoaded( fn ); } );\n\t\t\t\twindow.addEventListener( 'DOMContentLoaded', () => { gform.domLoaded = true; gform.callIfLoaded( fn ); } );\n\t\t\t}\n\t\t},\n\n\t\thooks: { action: {}, filter: {} },\n\t\taddAction: function( action, callable, priority, tag ) {\n\t\t\tgform.addHook( 'action', action, callable, priority, tag );\n\t\t},\n\t\taddFilter: function( action, callable, priority, tag ) {\n\t\t\tgform.addHook( 'filter', action, callable, priority, tag );\n\t\t},\n\t\tdoAction: function( action ) {\n\t\t\tgform.doHook( 'action', action, arguments );\n\t\t},\n\t\tapplyFilters: function( action ) {\n\t\t\treturn gform.doHook( 'filter', action, arguments );\n\t\t},\n\t\tremoveAction: function( action, tag ) {\n\t\t\tgform.removeHook( 'action', action, tag );\n\t\t},\n\t\tremoveFilter: function( action, priority, tag ) {\n\t\t\tgform.removeHook( 'filter', action, priority, tag );\n\t\t},\n\t\taddHook: function( hookType, action, callable, priority, tag ) {\n\t\t\tif ( undefined == gform.hooks[hookType][action] ) {\n\t\t\t\tgform.hooks[hookType][action] = [];\n\t\t\t}\n\t\t\tvar hooks = gform.hooks[hookType][action];\n\t\t\tif ( undefined == tag ) {\n\t\t\t\ttag = action + '_' + hooks.length;\n\t\t\t}\n\t\t\tif( priority == undefined ){\n\t\t\t\tpriority = 10;\n\t\t\t}\n\n\t\t\tgform.hooks[hookType][action].push( { tag:tag, callable:callable, priority:priority } );\n\t\t},\n\t\tdoHook: function( hookType, action, args ) {\n\n\t\t\t\/\/ splice args from object into array and remove first index which is the hook name\n\t\t\targs = Array.prototype.slice.call(args, 1);\n\n\t\t\tif ( undefined != gform.hooks[hookType][action] ) {\n\t\t\t\tvar hooks = gform.hooks[hookType][action], hook;\n\t\t\t\t\/\/sort by priority\n\t\t\t\thooks.sort(function(a,b){return a[\"priority\"]-b[\"priority\"]});\n\n\t\t\t\thooks.forEach( function( hookItem ) {\n\t\t\t\t\thook = hookItem.callable;\n\n\t\t\t\t\tif(typeof hook != 'function')\n\t\t\t\t\t\thook = window[hook];\n\t\t\t\t\tif ( 'action' == hookType ) {\n\t\t\t\t\t\thook.apply(null, args);\n\t\t\t\t\t} else {\n\t\t\t\t\t\targs[0] = hook.apply(null, args);\n\t\t\t\t\t}\n\t\t\t\t} );\n\t\t\t}\n\t\t\tif ( 'filter'==hookType ) {\n\t\t\t\treturn args[0];\n\t\t\t}\n\t\t},\n\t\tremoveHook: function( hookType, action, priority, tag ) {\n\t\t\tif ( undefined != gform.hooks[hookType][action] ) {\n\t\t\t\tvar hooks = gform.hooks[hookType][action];\n\t\t\t\thooks = hooks.filter( function(hook, index, arr) {\n\t\t\t\t\tvar removeHook = (undefined==tag||tag==hook.tag) && (undefined==priority||priority==hook.priority);\n\t\t\t\t\treturn !removeHook;\n\t\t\t\t} );\n\t\t\t\tgform.hooks[hookType][action] = hooks;\n\t\t\t}\n\t\t}\n\t};\n}\n<\/script>\n\n                <div class='gf_browser_gecko gform_wrapper gravity-theme gform-theme--no-framework' data-form-theme='gravity-theme' data-form-index='0' id='gform_wrapper_12' ><form method='post' enctype='multipart\/form-data'  id='gform_12'  action='\/es\/wp-json\/wp\/v2\/pages\/5263' data-formid='12' novalidate>\n                        <div class='gform-body gform_body'><div id='gform_fields_12' class='gform_fields top_label form_sublabel_below description_below validation_below'><div id=\"field_12_10\" class=\"gfield gfield--type-html gfield--input-type-html gfield--width-full gfield_html gfield_html_formatted gfield_no_follows_desc field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  >Informaci\u00f3n personal<\/div><div id=\"field_12_1\" class=\"gfield gfield--type-text gfield--input-type-text gfield_contains_required field_sublabel_below gfield--no-description field_description_below hidden_label field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_12_1'><span class='gform-field-label__text'>Su nombre<\/span><span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Obligatorio)<\/span><\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_1' id='input_12_1' type='text' value='' class='large'   tabindex='1' placeholder='Su nombre' aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_12_3\" class=\"gfield gfield--type-email gfield--input-type-email gfield_contains_required field_sublabel_below gfield--no-description field_description_below hidden_label field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_12_3'><span class='gform-field-label__text'>Direcci\u00f3n de correo electr\u00f3nico<\/span><span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Obligatorio)<\/span><\/span><\/label><div class='ginput_container ginput_container_email'>\n                            <input name='input_3' id='input_12_3' type='email' value='' class='large' tabindex='2'  placeholder='Direcci\u00f3n de correo electr\u00f3nico' aria-required=\"true\" aria-invalid=\"false\"  \/>\n                        <\/div><\/div><div id=\"field_12_11\" class=\"gfield gfield--type-html gfield--input-type-html gfield--width-full JE-messageDetails-title gfield_html gfield_html_formatted gfield_no_follows_desc field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  >Detalles del mensaje<\/div><div id=\"field_12_12\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-full gfield_contains_required field_sublabel_below gfield--no-description field_description_below hidden_label field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_12_12'><span class='gform-field-label__text'>Asunto<\/span><span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Obligatorio)<\/span><\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_12' id='input_12_12' type='text' value='' class='large'   tabindex='3' placeholder='Asunto' aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/div><div id=\"field_12_13\" class=\"gfield gfield--type-textarea gfield--input-type-textarea field_sublabel_below gfield--no-description field_description_below hidden_label field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_12_13'><span class='gform-field-label__text'>Breve descripci\u00f3n de su problema legal<\/span><\/label><div class='ginput_container ginput_container_textarea'><textarea name='input_13' id='input_12_13' class='textarea large' tabindex='4'   placeholder='Breve descripci\u00f3n de su problema legal'  aria-invalid=\"false\"   rows='10' cols='50'><\/textarea><\/div><\/div><fieldset id=\"field_12_14\" class=\"gfield gfield--type-consent gfield--type-choice gfield--input-type-consent gfield_contains_required field_sublabel_below gfield--no-description field_description_below hidden_label field_validation_below gfield_visibility_visible gfield--choice-align-vertical\"  ><legend class='gfield_label gform-field-label gfield_label_before_complex' ><span class='gform-field-label__text'>Consentimiento<\/span><span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Obligatorio)<\/span><\/span><\/legend><div class='ginput_container ginput_container_consent'><input name='input_14.1' id='input_12_14_1' type='checkbox' value='1' tabindex='5'  aria-required=\"true\" aria-invalid=\"false\"   \/> <label class=\"gform-field-label gform-field-label--type-inline gfield_consent_label\" for='input_12_14_1' ><span class='gform-field-label__text'>He le\u00eddo el <a href=\"https:\/\/eliasik-law.com\/es\/descargo-de-responsabilidad\/\">Aviso legal.<\/a> <a href=\"https:\/\/eliasik-law.com\/es\/politica-de-privacidad\/\">Pol\u00edtica de privacidad.<\/a><\/span><span class=\"gfield_required gfield_required_text\">(Obligatorio)<\/span><\/label><input type='hidden' name='input_14.2' value='He le\u00eddo el &lt;a href=&quot;https:\/\/eliasik-law.com\/es\/descargo-de-responsabilidad\/&quot;&gt;Aviso legal.&lt;\/a&gt; &lt;a href=&quot;https:\/\/eliasik-law.com\/es\/politica-de-privacidad\/&quot;&gt;Pol\u00edtica de privacidad.&lt;\/a&gt;' class='gform_hidden' \/><input type='hidden' name='input_14.3' value='2' class='gform_hidden' \/><\/div><\/fieldset><\/div><\/div>\n        <div class='gform-footer gform_footer top_label'> <button type='submit' id='gform_submit_button_12' class='gform_button button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='submit' tabindex='6'>Enviar<\/button> \n            <input type='hidden' class='gform_hidden' name='gform_submission_method' data-js='gform_submission_method_12' value='postback' \/>\n            <input type='hidden' class='gform_hidden' name='gform_theme' data-js='gform_theme_12' id='gform_theme_12' value='gravity-theme' \/>\n            <input type='hidden' class='gform_hidden' name='gform_style_settings' data-js='gform_style_settings_12' id='gform_style_settings_12' value='[]' \/>\n            <input type='hidden' class='gform_hidden' name='is_submit_12' value='1' \/>\n            <input type='hidden' class='gform_hidden' name='gform_submit' value='12' \/>\n            \n            <input type='hidden' class='gform_hidden' name='gform_currency' data-currency='USD' value='N2b11pQ2M\/WqrHkUv8XnKpWZ\/UL6DhqsHGViTUr7qdlsZK2CJ+fTQtVPtsoWektwS83EuHNQryScZnnMbpKxiIYMo8lILDaI5bmKop2ACiULGaQ=' \/>\n            <input type='hidden' class='gform_hidden' name='gform_unique_id' value='' \/>\n            <input type='hidden' class='gform_hidden' name='state_12' value='WyJ7XCIxNC4xXCI6XCI5NmI4NTc4Njk1YTdjZDc4ZGE5YzBjNGY3N2ZhMTk0OVwiLFwiMTQuMlwiOlwiYjJkZTJkYjUyY2ZiMGIzZDU4M2I3NjViMDFhMWRjYWNcIixcIjE0LjNcIjpcImE2MDJkMzBlMzg1MWJjNWFjN2Y3M2U0ZDcyNmU0YzEyXCIsXCJnZm9ybV9zdWJtaXNzaW9uX21ldGhvZFwiOltcImM2ODgyZjE2MTNjMjBlNzkyOTVhYWEyMTIzYzI3MzM4XCIsXCJiOTY4MDQxNGY4ZmRmNjA3N2M2NmVjYTc4Y2I4Y2U3N1wiXSxcImdmb3JtX3RoZW1lXCI6XCI3MjFlNGZkMGFkNDY1YzY5MGI2NmY1ODVjOTNjNGU1OFwiLFwiZ2Zvcm1fc3R5bGVfc2V0dGluZ3NcIjpcImZkZDU0MmMxNWVkZWNiNmQ4NGNiYTdjYmI5YTUwZGMwXCIsXCJmb3JtX2lkXCI6XCI3NTUzMTZjZTRmMmM1ZDY3MzYyM2FiNGIyOTgwOWY2MVwiLFwidXJsXCI6XCI3ODUyNGY1NzFkYjQ2NjgwNGUyYWFiNTg0YTZiOTYxYVwiLFwic3RhdGVfdGltZXN0YW1wXCI6XCI2MmU0MjRlZGVlNWMxMGM2MzYzZmUwY2Y0YWE4NmM5YlwifSIsIjBlMzg5ZjZlMmI0NDczMjBmOWE4ODkxNTA4ZDhmNzdiIiwxNzg3NjI3NzcyXQ==' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_target_page_number_12' id='gform_target_page_number_12' value='0' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_source_page_number_12' id='gform_source_page_number_12' value='1' \/>\n            <input type='hidden' name='gform_field_values' value='' \/>\n            \n        <\/div>\n                        <input type=\"hidden\" id=\"ct_checkjs_7f24d240521d99071c93af3917215ef7\" name=\"ct_checkjs\" value=\"0\" \/><script >setTimeout(function(){var ct_input_name = \"ct_checkjs_7f24d240521d99071c93af3917215ef7\";if (document.getElementById(ct_input_name) !== null) {var ct_input_value = document.getElementById(ct_input_name).value;document.getElementById(ct_input_name).value = document.getElementById(ct_input_name).value.replace(ct_input_value, '3d9c4e460124872b36a6ced47c582d41a28a0ce5de0c4f816da278724e53cf84');}}, 1000);<\/script><input\n                    class=\"apbct_special_field apbct_email_id__gravity_form\"\n                    name=\"apbct__email_id__gravity_form\"\n                    aria-label=\"apbct__label_id__gravity_form\"\n                    type=\"text\" size=\"30\" maxlength=\"200\" autocomplete=\"off\"\n                    value=\"\"\n                \/><input\n                    class=\"apbct_special_field apbct_email_id__elementor_form\"\n                    name=\"apbct__email_id__elementor_form\"\n                    aria-label=\"apbct__label_id__elementor_form\"\n                    type=\"text\" size=\"30\" maxlength=\"200\" autocomplete=\"off\"\n                    value=\"\"\n                \/><\/form>\n                        <\/div>\n<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>Correo electr\u00f3nico Personal InformationYour Name(Required)Email Address(Required) Message DetailsSubject(Required)Brief description of your legal issue Consent(Required) I have read the Disclaimer. Privacy Policy.(Required)<\/p>\n","protected":false},"author":2,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"elementor_header_footer","meta":{"footnotes":""},"class_list":["post-5263","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/eliasik-law.com\/es\/wp-json\/wp\/v2\/pages\/5263","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/eliasik-law.com\/es\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/eliasik-law.com\/es\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/eliasik-law.com\/es\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/eliasik-law.com\/es\/wp-json\/wp\/v2\/comments?post=5263"}],"version-history":[{"count":1,"href":"https:\/\/eliasik-law.com\/es\/wp-json\/wp\/v2\/pages\/5263\/revisions"}],"predecessor-version":[{"id":5264,"href":"https:\/\/eliasik-law.com\/es\/wp-json\/wp\/v2\/pages\/5263\/revisions\/5264"}],"wp:attachment":[{"href":"https:\/\/eliasik-law.com\/es\/wp-json\/wp\/v2\/media?parent=5263"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}