Hi @brogitzu ,
the default email is the main admin email.
As written in the plugin description, you can change the default by adding this code to the functions.php of your child theme or to a functional plugin:
add_filter( 'essential_form_settings',function( $options ){
return array(
'email_from' => '[email protected]',
'email_to' => '[email protected]',
'email_subject' => sprintf( esc_html__( 'Message from %s','your-domain' ),get_bloginfo( 'name' ) ),
'label_name' => __( 'Name','your-domain' ),
'label_email' => __( 'Email','your-domain' ),
'label_message' => __( 'Message','your-domain' ),
'button_text' => __( 'Send','your-domain' ),
'agreement_text' => __( 'By submitting this form I agree with the privacy policy','your-domain' ),
'success_message' => __( 'Form submitted successfully! Thank you for your message!','your-domain' ),
'name_missing_error' => __( 'Name is a required field!','your-domain' ),
'email_missing_error' => __( 'Email is a required field!','your-domain' ),
'email_not_valid_error' => __( 'Email not valid!','your-domain' ),
'message_missing_error' => __( 'Message is a required field!','your-domain' ),
'message_too_long_error' => __( 'This message is too long! Please, write not more than 50000 characters.','your-domain' ),
'missing_agreement_error' => __( 'You have to agree with our privacy policy to submit the form.','your-domain' )
);
} );
In your case you need to replace ‘[email protected]’ with your email.
There are no settings for this plugin. It’s only customizable via code, or some shortcode parameters.
Let me know if you need more help.
Have a great day!
Jose